{% 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 %}