17 lines
543 B
HTML
17 lines
543 B
HTML
{% load cms_tags staticfiles %}
|
|
<!-- Page Header -->
|
|
<!-- Set your background image for this header on the line below. -->
|
|
<header class="intro-header" style="background-image: url('{% static 'ungleich_page/img/header-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> {{ page_title }} </h1>
|
|
<hr class="small">
|
|
<span class="subheading"> {{page_subtitle}} </span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|