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>
<html lang="{{ DEFAULT_LANG }}">
<head>
<meta charset="utf-8" />
<title>{{ SITENAME }} - {% block title %}{% endblock %}</title>
</head>
<body>
<header>
<h1><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1>
<nav>
<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>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>{{ SITENAME }}</title>
</head>
<body>
<header><h1>{{ SITENAME }}</h1></header>
<main>{% block content %}{% endblock %}</main>
</body>
</html>