22 lines
		
	
	
		
			No EOL
		
	
	
		
			490 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			490 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|         {{partial "head" .}}
 | |
|     </head>
 | |
|     <body>
 | |
|         {{partial "header" .}}
 | |
|         <main>
 | |
|             <article>
 | |
|                 <section>
 | |
|                     {{.Content}}
 | |
|                 </section>
 | |
|                 {{ if .Params.author}}
 | |
|                 <section>
 | |
|                     {{partial "metadata" .}}
 | |
|                 </section>
 | |
|                 {{end}}
 | |
|             </article>
 | |
|         </main>
 | |
|         {{partial "footer" .}}
 | |
|     </body>
 | |
| </html> |