mirror of
				https://github.com/falsycat/ar.falsy.cat.git
				synced 2025-10-30 05:08:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			509 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			509 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| {{ partial "head.html" . }}
 | |
| 
 | |
| <body>
 | |
| {{partial "search.html" .}}
 | |
| <div class="singlePage">
 | |
|     <!-- Begin actual content -->
 | |
|     {{partial "header.html" .}}
 | |
|     <article>
 | |
|         <h1>All {{.Title}}</h1>
 | |
|         {{with .Params.description}}
 | |
|             <p>{{.}}</p>
 | |
|         {{end}}
 | |
|         {{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }}
 | |
|         {{ template "_internal/pagination.html" .}}
 | |
|     </article>
 | |
|     {{partial "contact.html" .}}
 | |
| </div>
 | |
| </body>
 | |
| 
 | |
| </html>
 |