src/dlw/ssg_config/templates/base.html aktualisiert

This commit is contained in:
Kim Diallo 2026-01-03 02:34:03 +01:00
parent f38be809f2
commit cd00bb3855
1 changed files with 11 additions and 29 deletions

View File

@ -1,29 +1,11 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}"> <html lang="de">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>{{ SITENAME }} - {% block title %}{% endblock %}</title> <title>{{ SITENAME }}</title>
</head> </head>
<body>
<body> <header><h1>{{ SITENAME }}</h1></header>
<header> <main>{% block content %}{% endblock %}</main>
<h1><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1> </body>
<nav> </html>
<ul>
{% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</nav>
</header>
<div id="content">
{% block content %}
{% endblock %}
</div>
<footer>
<p>&copy; {{ AUTHOR }} {{ CURRENT_YEAR }}</p>
</footer>
</body>
</html>