mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 01:53:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			558 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			558 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <h1>
 | |
|         {{ partial "icon.html" "files" }}
 | |
|         {{ .Title | markdownify }}
 | |
|         {{ partial "rss-link.html" . }}
 | |
|     </h1>
 | |
| 
 | |
|     {{ partial "description-or-summary.html" . }}
 | |
| 
 | |
|     <div class="page-list">
 | |
|         <ul>
 | |
|             {{ range .Paginator.Pages.Reverse }}
 | |
|                 <li>{{ .Render "summary/post" }}</li>
 | |
|             {{ else }}
 | |
|                 <div>
 | |
|                     {{ i18n "no_posts" }}
 | |
|                 </div>
 | |
|             {{ end }}
 | |
|         </ul>
 | |
|     </div>
 | |
| 
 | |
|     {{ partial "pagination.html" . }}
 | |
| {{ end }}
 |