forked from autonomic-cooperative/cotech-website
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			518 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			518 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
|   {% include head.html %}
 | |
|   <body>
 | |
|     {% include header.html %}
 | |
| 
 | |
|     <div class="default-wrapper">
 | |
|       <section class="page-heading">
 | |
|         <h1>{{ page.heading }}</h1>
 | |
|       </section>
 | |
| 
 | |
|       <section class="content">
 | |
|         {{ content }}
 | |
|       </section>
 | |
| 
 | |
|       {% if page.append_email_form %}
 | |
|       <section>
 | |
|         <p>Contact us <a href="{{ site.forum }}">using our forum</a>.</p>
 | |
|       </section>
 | |
|       {% endif %}
 | |
|     </div>
 | |
|     {% include footer.html %}
 | |
|   </body>
 | |
| </html>
 |