Main HTML Templates

This commit is contained in:
2025-09-23 00:49:17 +02:00
parent 36f9f62a0e
commit cfe48023e6
9 changed files with 572 additions and 0 deletions

98
templates/home.html Normal file
View File

@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
{{style | safe}}
<link rel="stylesheet" href="/styles/newstyle.css">
<link rel="stylesheet" href="/styles/nav.css">
<title>Gabriel's personal website</title>
</head>
<body>
<main>
<form method="POST">
<div class="columnsplitter">
<div class="rowsplitter">
<div id="home" class="content fit">
<h2 class="titlebar">🏠 <a href="https://www.weingardt.dev/">Weingardt.dev</a> - Home</h2>
<p>
A visitor! It appears you have found my website (I wonder how...)<br><br>
I'm Gabriel, a {{ ageinsert }} year old student from Germany 🇩🇪.<br>
I mainly do programming and computer stuff. See my /<s><a>projects</a></s>/ if u wanna learn more.<br>
You'll find more about me on <a href="{{ url_for('me') }}">/me/</a>
<br><br>
Also see <s><a>this</a></s>, one of my greatest projects (as of yet).
A homebrew computer I developed over the last three years.
Note, this projects is still ongoing and stuff is always changing.
<br><br>
Feel free to browse this little site.
There is more to this site than this page!<br>
(Refreshing the page also does some magic)
</p>
<p class="text-center">
<br><br>
<marquee><h2>Still under reconstruction!&emsp;&emsp;&emsp;&emsp;&emsp; IM LAZY AS FUCK</h2></marquee>
<br>
Regardless, thank you for taking a look at my little corner of the internet, and I hope you enjoy your visit.
</p>
<br><br><br>
<p>
Due to my <i>lazy as fuck</i> state, I can't get behind my own shit.
Including making a tutorial and page for all the LS7 stuff.
<br>
So if you're lookin for any of that, here ya go with the
<a href="https://www.weingardt.dev/ls7schematic.pdf">schematics</a>,
<a href="https://www.weingardt.dev/ls7pcb.pdf">pcb</a> and
<a href="https://www.weingardt.dev/ls7files.zip">KiCad files</a>.
<br>
All this shit is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>.
</p>
</div>
<!--div class="content fit">
<h2 class="titlebar">🎯 Stuff you maybe interested in</h2>
<a href="{{ url_for('ssup') }}">SSUP</a>
</div-->
<div class="content fit">
<h2 class="titlebar" id="Wannasaysomething">🗯️ Wanna say something to me?</h2>
Wanna say something? Do it. No need for a stupid registration, you can do so anonymously.
Your messages are only visible to me. Not to any other users of this site.
<br>
Messages are limited to {{textlength}} characters.
To avoid spamming, a message can only be send every 30 seconds.
This applies to all simuntanious users of the site. Don't be an asshole.
<br><br>
This is one way communication. I have no way of contacting you back, so if you want that
please provide an adiquate solution lol.
<br><br>
<div class="chatbox">
<textarea rows="8" cols="60" name="textvalue" placeholder="Message (max {{textlength}} characters)">{{ textvalue }}</textarea>
<div>
<input type="submit" name="send" value="Submit">
<input type="submit" name="clear" value="Clear">
</div>
</div>
<p>{{ errorValue }}</p>
</div>
{{footer | safe}}
</div>
{{navbar | safe}}
</div>
</form>
</main>
</body>
</html>