New Version

This commit is contained in:
2019-05-22 20:43:55 +02:00
parent 4a70d9af93
commit f7ef8d8b6f
9 changed files with 228 additions and 20 deletions

View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ site_title }} - {{ page_title }}</title>
<link href="{{ theme }}" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<ul>
{% for page in pages %}
{% if page.is_index %}
<li><a href="{{ page.stub }}.html">{{ site_title }}</a></li>
{% else %}
<li><a href="{{ page.stub }}.html">{% if current_page.stub == page.stub %}>> {% endif %}{{ page.name }}</a></li>
{% endif %}
{% endfor %}
</ul>
<div class="content">
{% for article in current_page.articles %}
{{ article.content}}
{% endfor %}
</div>
<div class="footer">
<p>
Created with <a href="#">picopage</a>
</p>
</div>
</body>
</html>