Merge pull request 'idk' (#9) from dev into origin
Reviewed-on: https://codeberg.orgBingus_Violet/Violets-Purgatory#9
This commit is contained in:
commit
abd08b9606
4 changed files with 7 additions and 6 deletions
7
index.js
7
index.js
|
@ -225,6 +225,8 @@ function pageUpdate() {
|
||||||
html = html.replace("{SEASONAL_EFFECT}", "")
|
html = html.replace("{SEASONAL_EFFECT}", "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html = '<!-- The following code is dynamically generated, I apologize for any formatting errors. Please view the "resources/mainPage.html" on the codeberg repository for something more readable. -->\n' + html
|
||||||
|
|
||||||
fs.writeFileSync(path.join(__dirname, 'static/index.html'), html)
|
fs.writeFileSync(path.join(__dirname, 'static/index.html'), html)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,9 +264,8 @@ pageUpdate()
|
||||||
app.use((req, res, next) => {
|
app.use((req, res, next) => {
|
||||||
res.status(404).send(`
|
res.status(404).send(`
|
||||||
<link rel="stylesheet" href="/style.css">
|
<link rel="stylesheet" href="/style.css">
|
||||||
<h1>...what?</h1>
|
<h1>404</h1>
|
||||||
<p>Uh oh... I think your lost? There's nothing here :P
|
<p>Uh oh... I think your lost? There's nothing here :P</p>
|
||||||
<br>Maybe you were sent the wrong link? Try going to 'fs.violets-purgatory.dev' instead if you were expecting a file...</p>
|
|
||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<link rel="stylesheet" href="../style.css">
|
<link rel="stylesheet" href="../../style.css">
|
||||||
|
|
||||||
|
|
||||||
<meta content="Discord Status - Violet's Purgatory" property="og:title" />
|
<meta content="Discord Status - Violet's Purgatory" property="og:title" />
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<p>Just some fun things that really don't have use on the main page but exist anyway!</p>
|
<p>Just some fun things that really don't have use on the main page but exist anyway!</p>
|
||||||
|
|
||||||
<div class="fadediv container-fluid ">
|
<div class="fadediv container-fluid ">
|
||||||
<a href="./discord">Dynamic Discord Status (Javascript, W.I.P)</a>
|
<p class="chip"><a href="./discord">Dynamic Discord Status (Javascript, W.I.P)</a></p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -78,7 +78,7 @@ a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.chip:hover {
|
.chip:hover {
|
||||||
/* background-color: rgb(20, 10, 30); */
|
background-color: rgb(20, 10, 30);
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
/* font-size: 1.35rem; */
|
/* font-size: 1.35rem; */
|
||||||
border-color: white;
|
border-color: white;
|
||||||
|
|
Loading…
Reference in a new issue