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,36 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Overview for {{tag}}</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<base href="../">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="assets/fonts/Hack/Hack.css">
</head>
<body>
<header> =================================================================================
// ___ ___ ___ _________ ___ _____ _____ //
// / / / / / / / ______/ / / / | / | //
// / / / / / / / / / / / /| | / /| | //
// / / / / / / / / / / / /_| | / /_| | //
// / / / / / / / / / / / ___ |/ ___ | //
// / /______ / /___/ / / /______ / / / / | | / | | //
// /_________/ /_________/ /_________/ /__/ /__/ |__|_/ |__| //
// //
================================================================================= </header>
<main>
<h1>overview for tag '{{tag}}'</h1>
<div class="overview">
<div class="entries">
<h1>entries</h1>
<ul>
{% for occurence in occurences %}
<li>{% if occurence.date %}{{occurence.date}}{% else %}date missing{% endif %} - <a href="{{occurence.href}}">{{occurence.heading}}</a></li>
{% endfor %}
</ul>
</div>
<a href="{{overview_backlink}}"><-- go back to general overview</a>
</div>
</main>
</body>
</html>
{% extends "base.html" %}
{% block head_extra %}
<base href="../../">
{% endblock %}
{% block main %}
<h1>overview for tag '{{tag}}'</h1>
<div class="overview">
<div class="entries">
<h1>entries</h1>
<ul>
{% for occurence in occurences %}
<li>{% if occurence.date %}{{occurence.date}}{% else %}date missing{% endif %} - <a href="blog/{{occurence.href}}">{{occurence.heading}}</a></li>
{% endfor %}
</ul>
</div>
<a href="{{overview_backlink}}"><-- go back to general overview</a>
</div>
{% endblock %}