forked from finga/onders.org_zola_theme
24 lines
774 B
HTML
24 lines
774 B
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>{{ config.title }}</title>
|
|
<link href="{{ config.base_url | safe}}/style.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>
|
|
<section class="section">
|
|
<div class="container">
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
{% include "footer.html" %}
|
|
</section>
|
|
</body>
|
|
</html>
|