mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-11-03 18:27:55 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			288 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			288 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<div class="post-title">
 | 
						|
    <h1>{{ .Title | markdownify }}</h1>
 | 
						|
</div>
 | 
						|
 | 
						|
{{ partial "post-metadata.html" . }}
 | 
						|
 | 
						|
{{ if .Params.Toc }}
 | 
						|
<div id="table-of-contents">
 | 
						|
    <h2>Table of Contents</h2>
 | 
						|
    {{ .TableOfContents }}
 | 
						|
</div>
 | 
						|
{{ end }}
 | 
						|
 | 
						|
<hr>
 | 
						|
 | 
						|
{{ .Content }}
 | 
						|
{{ end }}
 |