33 lines
		
	
	
		
			No EOL
		
	
	
		
			669 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			No EOL
		
	
	
		
			669 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 
 | |
| <head>
 | |
|     {{partial "head" .}}
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     {{partial "header" .}}
 | |
|     {{partial "banner" .}}
 | |
|     {{partial "spritesheet" .}}
 | |
|     <main>
 | |
|         <section>
 | |
|             {{if .Content}}
 | |
|             {{.Content}}
 | |
|             {{end}}
 | |
|             {{ template "_internal/pagination.html" .}}
 | |
|             <div class="gallery">
 | |
|                 {{ if .Pages }}
 | |
|                 {{range (.Paginate .Pages).Pages}}
 | |
|                 {{partial "item" .}}
 | |
|                 {{end}}
 | |
|                 {{end}}
 | |
|             </div>
 | |
| 
 | |
|             {{ template "_internal/pagination.html" .}}
 | |
| 
 | |
|         </section>
 | |
|     </main>
 | |
|     {{partial "footer" .}}
 | |
| </body>
 | |
| 
 | |
| </html> |