1
0
forked from nat/webbed-site

finally make a stupid repository for this

This commit is contained in:
main
2024-07-26 07:28:48 -07:00
commit a5d0c8b589
149 changed files with 4386 additions and 0 deletions

19
html/blog/index.html Normal file
View File

@ -0,0 +1,19 @@
<html>
<style>
$[cat style.css]
</style>
<body>
$[python3 -c 'import utils; print(utils.parse_file("html/header.html"))' | sed 's/\$PREV_URL\$/"{prev}"/']
<h1>Blog? Thing</h1>
<p>I don't know if I will use this, but I am bored and thus making a blog system.</p>
<hr>
<h2>Posts</h2>
<table>
<tbody><tr><th><p>Title</p></th><th><p>Editted</p></th><th><p>Posted</p></th><th><p>Size</p></th></tr>
<tr><th colspan="4"><hr></th></tr>
$[for file in $(ls html/blog/posts); do echo "<tr><td><a href=\"/html/blog/posts/$file\">$file</a></td><td>$(stat -c %y "html/blog/posts/$file" | head -c 16)</td><td><p>$(stat -c %y html/blog/posts/$file | head -c 10)</p></td><td align=\"right\">$(numfmt --to=iec --suffix=B $(stat -c %s "html/blog/posts/$file"))</td></tr>"; done | sed 's/\/\//\//g']
<tr><th colspan="4"><hr></th></tr>
</tbody>
</table>
</body>
</html>

View File

@ -0,0 +1,40 @@
<html>
<style>
$[cat style.css]
.image-container {
column-count: 3;
}
.image-container img, .caption {
width: 60%;
}
</style>
<title>Belt sander maintenance</title>
<body>
$[python3 -c 'import utils; print(utils.parse_file("html/header.html"))' | sed 's/\$PREV_URL\$/"{prev}"/']
<h1>I fixed cool equipment my school has</h1>
<p>That is neat, I guess. I should start using the blog feature of my site more.</p>
<hr>
<p>
My school has a big wide belt sander in the wood shop, it is fancy and has electronic controls and whatnot.
There are two contactors that control the movement of the table, one for up, one for down.
The contactor to move the table down has failed twice, once due to general lack of maintenance, and once because the person that replaced it the first time damaged the new contactor during the replacement.
Luckily, for whatever reason the person that replaced the contactor for whatever reason replaced both the up and down contactor, only one of which was bad.
Because of this there was a spare contactor that was good lying around somewhere in the wood shop, thus I was able to replace the damaged replacement contactor.
</p>
<div class="image-container">
<span>
<img src=/files/blog-files/pictures/kingwood-bad-contactor.jpg>
<div class="caption">The damaged "table down" contactor in the kingwood belt sander.</div>
</span>
<span>
<img src=/files/blog-files/pictures/natalie-kingwood.jpg>
<div class="caption">Unexpected photograph of me my friend took while fixing the belt sander.</div>
</span>
<span>
<img src=/files/blog-files/pictures/kingwood-wiring-mess.jpg>
<div class="caption">Contactor spaghetti.</div>
</span>
</div>
</body>
</html>

View File

@ -0,0 +1,22 @@
<html>
<style>
$[cat style.css]
</style>
<title>My Framework 16 arrived :)</title>
<body>
$[python3 -c 'import utils; print(utils.parse_file("html/header.html"))' | sed 's/\$PREV_URL\$/"{prev}"/']
<h1>I got my Framework 16.</h1>
<p>
Her name is Lavinia, which is a stupid reference probably 2 people who see this website will get.
I love her so.
</p>
<hr>
<p>
My website looks different now. Lavinia has a new colorscheme and thus so does my website.
<img src=/files/fw16-new-colorscheme.png alt='new colorscheme for my framework'>
Now (2024-07-06) it has a different colorscheme:
<img src=/files/fw16-new-new-colorscheme.png alt='new new colorscheme for my framework'>
I'm not going to update the website's colorscheme because I am lazy.
</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<html>
<style>
$[cat style.css]
</style>
<body>
$[python3 -c 'import utils; print(utils.parse_file("html/header.html"))' | sed 's/\$PREV_URL\$/"{prev}"/']
<span style="font-size: 28px; float: left;">Wowee! a blogpost<br></span><br><br>
<hr>
aoeu
</body>
</html>