17 lines
		
	
	
		
			666 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			666 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <h1>{{ .Title }}</h1>
 | |
|   {{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
 | |
|   {{ if .Params.context }}
 | |
|       {{ $url := urls.Parse .Params.context.url }}
 | |
|       <p class="context"><a href="{{ $url.String }}" class="u-in-reply-to">{{ $url.Host }}</a></p>
 | |
|   {{ end }}
 | |
| 
 | |
|   {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
 | |
|   {{ $dateHuman := .Date | time.Format ":date_long" }}
 | |
|   <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
 | |
| 
 | |
|   {{ if .Params.toc }}<aside>{{ .TableOfContents }}</aside>{{ end }}
 | |
|   {{ .Content }}
 | |
|   {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
 | |
| {{ end }}
 |