12 lines
		
	
	
		
			201 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "index.html" %}
 | 
						|
{% import "post_macros.html" as post_macros %}
 | 
						|
 | 
						|
 | 
						|
{% block content %}
 | 
						|
 | 
						|
<h1> {{ page.title }} </h1>
 | 
						|
 | 
						|
  {{ post_macros::polish(content=page.content) }}
 | 
						|
 | 
						|
{%- endblock content %}
 |