Implemented blog engine and improved templates
This commit is contained in:
parent
2f2b9b4f21
commit
363bd23954
27 changed files with 1310 additions and 788 deletions
51
hello_world.html
Normal file
51
hello_world.html
Normal file
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Hello World!</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="assets/fonts/Hack/Hack.css">
|
||||
</head>
|
||||
<body>
|
||||
<header> =================================================================================
|
||||
// ___ ___ ___ _________ ___ _____ _____ //
|
||||
// / / / / / / / ______/ / / / | / | //
|
||||
// / / / / / / / / / / / /| | / /| | //
|
||||
// / / / / / / / / / / / /_| | / /_| | //
|
||||
// / / / / / / / / / / / ___ |/ ___ | //
|
||||
// / /______ / /___/ / / /______ / / / / | | / | | //
|
||||
// /_________/ /_________/ /_________/ /__/ /__/ |__|_/ |__| //
|
||||
// //
|
||||
================================================================================= </header>
|
||||
<main>
|
||||
<h1>Hello World!</h1>
|
||||
<div id="author_date">
|
||||
Written by Lucia Zehentner on 2025-03-01
|
||||
</div>
|
||||
<div id="blog-body">
|
||||
<p>This is the first blog entry on my website, generated out of a Markdown input file and a JSON using my own blog engine <a href="https://codeberg.org/Schlecknits/CatGirlBlogEngine">CatGirlBlogEngine</a>.</p>
|
||||
<h2>What you can expect on this blog</h2>
|
||||
<p>For the most part I'll cover topics that interest me personally, particually:</p>
|
||||
<ul>
|
||||
<li>Programming</li>
|
||||
<li>Geoinformatics</li>
|
||||
<li>Electronics</li>
|
||||
<li>Gender transistion</li>
|
||||
<li>Cooking and baking</li>
|
||||
</ul>
|
||||
<p>Let's see what the future might hold in store. If you are interested in a particual topic I'll try to tag each blog entry properly, so one can search for whatever is of interest to them.</p>
|
||||
<p>Until then, best of luck to you :3</p>
|
||||
|
||||
</div>
|
||||
<div id="tags">
|
||||
Tags:
|
||||
<a href="tags/test.html">#test</a>,
|
||||
<a href="tags/programming.html">#programming</a>
|
||||
</div>
|
||||
<div class="overview-backlink">
|
||||
<a href="blog.html"><-- go back to general overview</a>
|
||||
</div>
|
||||
</main>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue