mirror of
				https://github.com/falsycat/ar.falsy.cat.git
				synced 2025-10-28 20:32:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			515 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			515 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ .Lang }}">
 | |
| {{ partial "head.html" . }}
 | |
| 
 | |
| <body>
 | |
| {{partial "search.html" .}}
 | |
| <div class="singlePage">
 | |
|     <!-- Begin actual content -->
 | |
|     {{partial "header.html" .}}
 | |
|     <article>
 | |
|         <h1>{{ i18n "tag" }}: {{ .Title }}</h1>
 | |
|         {{with .Params.description}}
 | |
|             <p>{{.}}</p>
 | |
|         {{end}}
 | |
|         {{partial "page-list.html" .Paginator.Pages}}
 | |
|         {{ template "_internal/pagination.html" . }}
 | |
|     </article>
 | |
|     {{partial "contact.html" .}}
 | |
| </div>
 | |
| </body>
 | |
| </html>
 |