1
0
em.0x45.cz/templates/index.html

24 lines
431 B
HTML
Raw Normal View History

2021-12-02 10:44:45 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2021-12-02 10:48:08 +01:00
<title>{% block title %}{{ config.title }}{% endblock %}</title>
2021-12-02 10:44:45 +01:00
</head>
<body>
2021-12-02 10:48:08 +01:00
<header>
<a href="{{ config.base_url }}">{{ config.title }}</a>
</header>
<aside>
<ul>
<li><a href="">anchor</a></li>
<li><a href="">anchor</a></li>
<li><a href="">anchor</a></li>
</ul>
</aside>
<main>
{% block content %}
{% endblock %}
</main>
2021-12-02 10:44:45 +01:00
</body>
</html>