26 lines
		
	
	
		
			781 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			781 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="{{ .Site.Language }}">
 | 
						|
{{ partial "head.html" . }}
 | 
						|
 | 
						|
<body>
 | 
						|
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
 | 
						|
<main>
 | 
						|
<header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
 | 
						|
<article>
 | 
						|
{{ block "main" . }}
 | 
						|
{{ .Content }}
 | 
						|
{{ end }}
 | 
						|
{{ if not .IsHome }} <br><hr><br> {{end -}}
 | 
						|
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
 | 
						|
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
 | 
						|
</article>
 | 
						|
</main>
 | 
						|
{{ block "footer" . }}
 | 
						|
<footer>
 | 
						|
	<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
 | 
						|
	{{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
 | 
						|
</footer>
 | 
						|
{{ end }}
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |