Restructuring of file hierachy and cleanup

This commit is contained in:
Lucia Zehentner 2025-04-04 03:50:51 +02:00
parent de1f8ebfa2
commit 651b8b581f
37 changed files with 793 additions and 132 deletions

View file

@ -1,59 +1,40 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>{{entry.heading}}</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="assets/fonts/Hack/Hack.css">
</head>
<body>
<header> =================================================================================
// ___ ___ ___ _________ ___ _____ _____ //
// / / / / / / / ______/ / / / | / | //
// / / / / / / / / / / / /| | / /| | //
// / / / / / / / / / / / /_| | / /_| | //
// / / / / / / / / / / / ___ |/ ___ | //
// / /______ / /___/ / / /______ / / / / | | / | | //
// /_________/ /_________/ /_________/ /__/ /__/ |__|_/ |__| //
// //
================================================================================= </header>
<main>
<h1>{{entry.heading}}</h1>
<div id="author_date">
Written by {{entry.author}} on {{entry.date}}
</div>
{% if entry.content_warnings %}
<div id="cw">
Content Warnings:
{% for warning in entry.content_warnings %}
{% extends "base.html" %}
{% block head_extra %}
<base href="../">
{% endblock %}
{% block main %}
<h1>{{entry.heading}}</h1>
<div id="author_date">
Written by {{entry.author}} on {{entry.date}}
</div>
{% if entry.content_warnings %}
<div id="cw">
Content Warnings:
{% for warning in entry.content_warnings %}
{% if loop.nextitem is defined %}
{{warning}},
{% else %}
{{warning}}
{% endif %}
{% endfor %}
</div>
{% endif %}
<div id="blog-body">
{{entry.html}}
</div>
{% if entry.tags %}
<div id="tags">
Tags:
{% for tag in entry.tags %}
{% endfor %}
</div>
{% endif %}
<div id="blog-body">
{{entry.html}}
</div>
{% if entry.tags %}
<div id="tags">
Tags:
{% for tag in entry.tags %}
{% if loop.nextitem is defined %}
<a href="tags/{{tag}}.html">#{{tag}}</a>,
<a href="blog/tags/{{tag}}.html">#{{tag}}</a>,
{% else %}
<a href="tags/{{tag}}.html">#{{tag}}</a>
<a href="blog/tags/{{tag}}.html">#{{tag}}</a>
{% endif %}
{% endfor %}
</div>
{% endif %}
<div class="overview-backlink">
<a href="{{overview_backlink}}"><-- go back to general overview</a>
</div>
</main>
<footer></footer>
</body>
</html>
{% endfor %}
</div>
{% endif %}
<div class="overview-backlink">
<a href="{{overview_backlink}}"><-- go back to general overview</a>
</div>
{% endblock %}