11 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "site_base.html" %}
 | |
| 
 | |
| {% block head_title %}{{ flatpage.title }}{% endblock head_title %}
 | |
| 
 | |
| {% block content %}
 | |
| <div class="row">
 | |
|   <div class="col-12 content text-page" style="max-width: 45rem">
 | |
|     {{ flatpage.content }}
 | |
|   </div>
 | |
| </div>
 | |
| {% endblock content %}
 |