24 lines
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
  {% include head.html %}
 | 
						|
 | 
						|
  <body>
 | 
						|
 | 
						|
    {% include header.html %}
 | 
						|
 | 
						|
    <div class="page-content">
 | 
						|
      <div class="wrapper">
 | 
						|
        <h1 class="page-heading"></h1>
 | 
						|
        {% if page.toc %}
 | 
						|
          {{ content | toc_generate }}
 | 
						|
        {% else %}
 | 
						|
          {{ content }}
 | 
						|
        {% endif %}
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
  </body>
 | 
						|
 | 
						|
</html>
 |