You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
660 B
HTML
30 lines
660 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ config.default_language }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
|
|
<meta name="description" content="{{ config.description }}">
|
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{{ config.title }}
|
|
</header>
|
|
<aside>
|
|
<ul>
|
|
{% for item in config.extra.nav %}
|
|
<li><a href="{{ item.path }}">{{ item.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</aside>
|
|
<main>
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
{% endblock content %}
|
|
</main>
|
|
</body>
|
|
</html>
|