mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			847 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			847 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <h1>
 | |
|         {{ partial "icon.html" "folder" }}
 | |
|         {{ .Title | markdownify }}
 | |
|     </h1>
 | |
| 
 | |
|     <div class="category-list">
 | |
|         {{ with .Data.Terms.Alphabetical }}
 | |
|             <ul>
 | |
|                 {{ range . }}
 | |
|                     {{ with .Page }}
 | |
|                         <li>
 | |
|                             <a href="{{ .Permalink }}">
 | |
|                                 <p>{{ .Title | markdownify }}</p>
 | |
|                             </a>
 | |
|                             {{ partial "description-or-summary.html" . }}
 | |
|                             {{ partial "post-metadata/category.html" . }}
 | |
|                         </li>
 | |
|                     {{ end }}
 | |
|                 {{ end }}
 | |
|             </ul>
 | |
|         {{ else }}
 | |
|             <div>
 | |
|                 {{ i18n "no_posts" }}
 | |
|             </div>
 | |
|         {{ end }}
 | |
|     </div>
 | |
| {{ end }}
 |