finga
4aff0378ac
Deprecate the bulma css framework in favor of normalize and milligram. Adapt the templates to work with the new css libraries.
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ config.description }}">
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
<link href="{{ get_url(path="normalize.css", trailing_slash=false) }}" rel="stylesheet">
|
|
<link href="{{ config.base_url | safe}}/onders.org.css" rel="stylesheet">
|
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="16x16">
|
|
{% if config.generate_feed %}
|
|
<link rel="alternate" type="application/rss+xml" title="rss" href="/rss.xml">
|
|
{% endif %}
|
|
{% block js %}
|
|
{% endblock js %}
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<header>
|
|
<h1>{{ config.title }}</h1>
|
|
{% block subtitle %}{% endblock subtitle %}
|
|
</header>
|
|
{% include "navbar.html" %}
|
|
{% block content %} {% endblock content %}
|
|
{% include "navbar.html" %}
|
|
<footer>
|
|
<ul>
|
|
<li>
|
|
<a href="/credits">credits</a>
|
|
</li>
|
|
<li>
|
|
<a href="/rss.xml">RSS feed</a>
|
|
</li>
|
|
</ul>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|