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.
45 lines
1.3 KiB
45 lines
1.3 KiB
{% extends "layout.html" %} |
|
{% block title %}{{ this.title }}{% endblock %} |
|
<header> |
|
<h1>{{ self.title() }}</h1> |
|
<nav> |
|
<ul class="nav navbar-nav"> |
|
<li{% if this._path == '/' %} class="active"{% endif |
|
%}><a href="{{ '/'|url }}">ungleich.ch</a></li> |
|
{% for href, title in [ |
|
['/u/blog', 'the new ungleich blog'], |
|
] %} |
|
<li{% if this.is_child_of(href) %} class="active"{% endif |
|
%}><a href="{{ href|url }}">{{ title }}</a></li> |
|
{% endfor %} |
|
</ul> |
|
</nav> |
|
</header> |
|
{% block body %} |
|
<header class="intro-header" style="background-image: url('/u/static/images/home-bg.jpg');"> |
|
<div class="container"> |
|
<div class="row"> |
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> |
|
<div class="site-heading"> |
|
<h1>{{ this.title }}</h1> |
|
<hr class="small"> |
|
<span class="subheading"></span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</header> |
|
<div class="container"> |
|
<div class="row"> |
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> |
|
<div class="app app-blog span8"> |
|
<article> |
|
<div class="blog-content"> |
|
{{ this.body }} |
|
</div> |
|
</article> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
{% endblock %}
|
|
|