mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 01:53:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			522 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			522 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <h1>
 | |
|         {{ if eq .Data.Singular "tag" }}
 | |
|             {{ partial "icon.html" "tag" }}
 | |
|         {{ else }}
 | |
|             {{ partial "icon.html" "filter" }}
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ .Title | markdownify }}
 | |
|     </h1>
 | |
| 
 | |
|     <div class="taxonomy">
 | |
|         <ul>
 | |
|             {{ range .Data.Terms.Alphabetical }}
 | |
|                 <li>
 | |
|                     <a href="{{ .Page.Permalink }}">{{ .Page.Title | markdownify }}</a>
 | |
|                 </li>
 | |
|             {{ end }}
 | |
|         </ul>
 | |
|     </div>
 | |
| {{ end }}
 |