mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 01:53:30 -05:00 
			
		
		
		
	- Add vim folds to make organized sections - Rename a lot of classes from post- to page- - Generalize series CSS classes better - Clean up navbar div structure - Remove langpicker and most of multilingual support - many other minor tweaks
		
			
				
	
	
		
			12 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ with (.GetTerms "categories") }}
 | |
|     {{ $categories := slice }}
 | |
|     {{ range . }}
 | |
|         {{ $categories = $categories | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
 | |
|     {{ end }}
 | |
| 
 | |
|     <div class="page-metadata-section categories" aria-label="{{ i18n "aria_post_meta_categories" }}">
 | |
|         {{ partial "icon.html" "folder" }}
 | |
|         {{ delimit $categories ", " }}
 | |
|     </div>
 | |
| {{ end }}
 |