11 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			310 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"{% if flatpage.url != '/' %} style="max-width: 45rem"{% endif %}>
 | 
						|
    {{ flatpage.content }}
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
{% endblock content %}
 |