26 lines
		
	
	
		
			No EOL
		
	
	
		
			567 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			No EOL
		
	
	
		
			567 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|         {{partial "head" .}}
 | |
|     </head>
 | |
|     <body>
 | |
|         {{partial "header" .}}
 | |
|         <main>
 | |
|             <section>
 | |
|                 {{ if .Content}}
 | |
|                 <article>
 | |
|                     {{.Content}}
 | |
|                 </article>
 | |
|                 {{end}}
 | |
|                 {{ if .Pages }}
 | |
|                 <section>
 | |
|                     {{range .Pages}}
 | |
|                 {{partial "item" .}}
 | |
|                 {{end}}
 | |
|             </section>
 | |
|                 {{end}}
 | |
|             </main>
 | |
| 
 | |
|     {{partial "footer" .}}
 | |
|     </body>
 | |
| </html> |