You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
857 B
29 lines
857 B
<!doctype html> |
|
<meta charset="utf-8"> |
|
<link rel="stylesheet" href="{{ '/u/static/style.css'|url }}"> |
|
<title>{% block title %}Welcome{% endblock %} — ungleich static cms</title> |
|
<body> |
|
<header> |
|
<h1>ungleich static cms</h1> |
|
<nav> |
|
<ul class="nav navbar-nav"> |
|
<li{% if this._path == '/' %} class="active"{% endif |
|
%}><a href="{{ '/'|url }}">Welcome</a></li> |
|
{% for href, title in [ |
|
['/u/blog', 'Blog'], |
|
['/u/projects', 'Projects'], |
|
['/u/about', 'About'] |
|
] %} |
|
<li{% if this.is_child_of(href) %} class="active"{% endif |
|
%}><a href="{{ href|url }}">{{ title }}</a></li> |
|
{% endfor %} |
|
</ul> |
|
</nav> |
|
</header> |
|
<div class="page"> |
|
{% block body %}{% endblock %} |
|
</div> |
|
<footer> |
|
© Copyright 2019 by ungleich. |
|
</footer> |
|
</body>
|
|
|