mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			471 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			471 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <h1>
 | |
|         {{ partial "icon.html" "user-circle" }}
 | |
|         {{ .Title | markdownify }}
 | |
|     </h1>
 | |
| 
 | |
|     <div class="page-list">
 | |
|         {{ with .Paginator.Pages }}
 | |
|             <ul>
 | |
|                 {{ range . }}
 | |
|                     <li>{{ .Render "summary/author" }}</li>
 | |
|                 {{ end }}
 | |
|             </ul>
 | |
|         {{ else }}
 | |
|             <div>
 | |
|                 {{ i18n "no_posts" }}
 | |
|             </div>
 | |
|         {{ end }}
 | |
|     </div>
 | |
| {{ end }}
 |