1
0

Basic structure

This commit is contained in:
Emil Miler 2021-12-02 10:48:08 +01:00
parent af83c4db7b
commit d492db96ca
2 changed files with 15 additions and 2 deletions

View File

View File

@ -2,9 +2,22 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>{% block title %}{{ config.title }}{% endblock title %}</title> <title>{% block title %}{{ config.title }}{% endblock %}</title>
</head> </head>
<body> <body>
... <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>
</body> </body>
</html> </html>