19 lines
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
{{ define "main" }}
 | 
						|
 | 
						|
<h1>{{ .Title }}</h1>
 | 
						|
<p>
 | 
						|
  <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
 | 
						|
    {{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }}
 | 
						|
  </time>
 | 
						|
</p>
 | 
						|
<content>
 | 
						|
  {{ .Content }}
 | 
						|
</content>
 | 
						|
<p>
 | 
						|
  {{ range (.GetTerms "tags") }}
 | 
						|
  <a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
 | 
						|
  {{ end }}
 | 
						|
</p>
 | 
						|
 | 
						|
{{ end }}
 |