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.
28 lines
691 B
HTML
28 lines
691 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
|
|
<link rel="stylesheet" href="/style.css" type="text/css">
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="/logo.png" alt="Logo">
|
|
<h1>{{ config.title }}</h1>
|
|
<span id="menu">Menu</span>
|
|
</header>
|
|
{% block content %}
|
|
<main class="fullwidth">
|
|
<section class="partial">
|
|
<h2>{{ config.title }}</h2>
|
|
{{ section.content | safe }}
|
|
</section>
|
|
<aside class="partial">
|
|
</aside>
|
|
</main>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|