23 lines
		
	
	
	
		
			740 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			740 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load cms_tags staticfiles %}
 | 
						|
<!-- Page Header -->
 | 
						|
<!-- Set your background image for this header on the line below. -->
 | 
						|
<header class="intro-header"
 | 
						|
	{% if request.current_page.ungleichpage %}
 | 
						|
	style="background-image: url('{{ request.current_page.ungleichpage.image.url }}');"
 | 
						|
	{% else %}
 | 
						|
	style="background-image: url('{% static 'blog.ungleich.ch/img/home-bg.jpg'  %}');"
 | 
						|
	{% endif %}
 | 
						|
	>
 | 
						|
 | 
						|
  <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_attribute 'page_title'  %}  </h1>
 | 
						|
	  <hr class="small">
 | 
						|
	  <span class="subheading"> {% page_attribute 'meta_description' %}</span>
 | 
						|
	</div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</header>
 |