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
		
			
				
	
	
		
			20 lines
		
	
	
		
			428 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			428 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <div class="page-title">
 | |
|         <h1>
 | |
|             {{ partial "icon.html" "user-circle" }}
 | |
|             {{ .Title | markdownify }}
 | |
|             {{ partial "rss-link.html" . }}
 | |
|         </h1>
 | |
|     </div>
 | |
| 
 | |
|     {{ partial "page-metadata/author.html" . }}
 | |
| 
 | |
|     {{ with .Content }}
 | |
|         {{ . }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ partial "page-list.html" .Paginator.Pages }}
 | |
| 
 | |
|     {{ partial "pagination.html" . }}
 | |
| {{ end }}
 |