37 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| ---
 | |
| layout: default
 | |
| format: post-left-sidebar
 | |
| ---
 | |
| <div class="row t60">
 | |
| 	<div class="medium-4 columns">
 | |
| 		{% include sidebar.html %}
 | |
| 	</div><!-- /.medium-4.columns -->
 | |
| 
 | |
| 
 | |
| 	<div class="medium-8 columns">
 | |
| 		<article>
 | |
| 			<header>
 | |
| 				{% if page.subheadline %}<p class="subheadline">{{ page.subheadline }}</p>{% endif %}
 | |
| 				{% if page.image.title %}<img src="{{ site.url }}/images/{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">{% endif %}
 | |
| 				{% if page.image.url && page.image.credit %}
 | |
|                     <p class="text-right caption">
 | |
|                         <a href="{{ page.image.url }}">{{ page.image.credit }}</a>
 | |
|                     </p>
 | |
|                 {% endif %}
 | |
| 
 | |
| 				<h1>{{ page.title }}</h1>
 | |
| 			</header>
 | |
| 			{% if page.description %}
 | |
| 				<p class="teaser">
 | |
| 					{{ page.description }}
 | |
| 				</p>
 | |
| 			{% endif %}
 | |
| 			
 | |
| 			{{ content }}
 | |
| 
 | |
| 			{% include meta_information.html %}
 | |
| 
 | |
| 		</article>
 | |
| 	</div><!-- /.medium-8.columns -->
 | |
| </div><!-- /.row -->
 | |
| 
 |