Minor formatting, less quotes
This commit is contained in:
parent
1166137cb3
commit
c140edf16e
3 changed files with 6 additions and 9 deletions
|
@ -23,10 +23,7 @@
|
||||||
},
|
},
|
||||||
"quotes": [
|
"quotes": [
|
||||||
"Remember the 14th commandment: Thou shalt always clean thy plate and not waste anything, whether thy stomach is full, or not.",
|
"Remember the 14th commandment: Thou shalt always clean thy plate and not waste anything, whether thy stomach is full, or not.",
|
||||||
"Remember son, dying is gay!",
|
|
||||||
"Your friendly neighborhood queer",
|
|
||||||
"I hate javascript!!!",
|
"I hate javascript!!!",
|
||||||
"Don't fuck with this senator!",
|
|
||||||
"Happy 400 commits!",
|
"Happy 400 commits!",
|
||||||
"Play Cave Story!",
|
"Play Cave Story!",
|
||||||
"Cave Story+ Sucks!",
|
"Cave Story+ Sucks!",
|
||||||
|
@ -35,10 +32,7 @@
|
||||||
"IMAGE CACHING!!! THE IMAGE CACHING IS REAL!!!!",
|
"IMAGE CACHING!!! THE IMAGE CACHING IS REAL!!!!",
|
||||||
"Is sharing your IP <em>reallyy</em> that bad?",
|
"Is sharing your IP <em>reallyy</em> that bad?",
|
||||||
"The worst git user to exist",
|
"The worst git user to exist",
|
||||||
"no idea how branches work",
|
|
||||||
"Their ass is NOT listening",
|
|
||||||
"These birds are Pissing me off... I'm the original Starwalker",
|
"These birds are Pissing me off... I'm the original Starwalker",
|
||||||
"Married to my beloved <a href='./asahi'>Asahi</a> <3",
|
|
||||||
"Fun fact: Did you know the <a href='./socials'>Socials section</a> is considered its own page?"
|
"Fun fact: Did you know the <a href='./socials'>Socials section</a> is considered its own page?"
|
||||||
],
|
],
|
||||||
"titles": [
|
"titles": [
|
||||||
|
|
|
@ -170,7 +170,10 @@ async function updateCommits() {
|
||||||
var codebergResponse = await (await fetch(`https://codeberg.org/Bingus_Violet/Violets-Purgatory/src/branch/${process.env.BRANCH || "origin"}`)).text()
|
var codebergResponse = await (await fetch(`https://codeberg.org/Bingus_Violet/Violets-Purgatory/src/branch/${process.env.BRANCH || "origin"}`)).text()
|
||||||
var commits = codebergResponse.substring(0, codebergResponse.indexOf("Commits"))
|
var commits = codebergResponse.substring(0, codebergResponse.indexOf("Commits"))
|
||||||
commits = commits.substring(commits.lastIndexOf("<b>") + 3, commits.lastIndexOf("</b>"))
|
commits = commits.substring(commits.lastIndexOf("<b>") + 3, commits.lastIndexOf("</b>"))
|
||||||
commitCount = commits
|
commitCount = commits.toString()
|
||||||
|
if (process.env.BRANCH == "dev") {
|
||||||
|
commitCount += " | Beta site!"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateCommits()
|
updateCommits()
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
{WEATHER_MODIFIER}
|
{WEATHER_MODIFIER}
|
||||||
<h1 class="animatedTitle">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span><br></h1>
|
<h1 class="animatedTitle">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span><br></h1>
|
||||||
<main class="animatedMain">
|
<main class="animatedMain">
|
||||||
<p>{RANDOM_QUOTE}</p>
|
|
||||||
<hr>
|
<hr>
|
||||||
<div id="card">
|
<div id="card">
|
||||||
<h2>{Violet}</h2>
|
<h2>{Violet}</h2>
|
||||||
|
@ -36,7 +35,7 @@
|
||||||
<div style="float: left;">
|
<div style="float: left;">
|
||||||
<p>They/Them</p>
|
<p>They/Them</p>
|
||||||
<p>Developer</p>
|
<p>Developer</p>
|
||||||
<p>Dating Asahi <3</p>
|
<!-- <p>Dating Asahi <3</p> -->
|
||||||
<p>{DISCORD_STATUS}</p>
|
<p>{DISCORD_STATUS}</p>
|
||||||
<!-- <p>THIS TEXT IS THE EPIC EXTREME FILLER TO TEST THE SITE'S FORMATTING :fire:</p> -->
|
<!-- <p>THIS TEXT IS THE EPIC EXTREME FILLER TO TEST THE SITE'S FORMATTING :fire:</p> -->
|
||||||
</div>
|
</div>
|
||||||
|
@ -57,6 +56,7 @@
|
||||||
{CUSTOM_STATUS}
|
{CUSTOM_STATUS}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p>{RANDOM_QUOTE}</p>
|
||||||
<p>Make sure to check out this project on <a href="https://codeberg.org/bingus_violet/violets-purgatory">Codeberg</a>!</p>
|
<p>Make sure to check out this project on <a href="https://codeberg.org/bingus_violet/violets-purgatory">Codeberg</a>!</p>
|
||||||
|
|
||||||
<div id="activityHTML">
|
<div id="activityHTML">
|
||||||
|
|
Loading…
Reference in a new issue