22 lines
		
	
	
		
			650 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			650 B
		
	
	
	
		
			HTML
		
	
	
{{ define "main" }}
 | 
						|
<article>
 | 
						|
    <header id="post-header">
 | 
						|
        <h1>{{ .Title }}</h1>
 | 
						|
        {{- if compare.Ne .Parent.Title "Home" -}}
 | 
						|
        <div>
 | 
						|
            Part of the <a href="{{ .Parent.Permalink }}">{{ .Parent.Title }}</a> series
 | 
						|
        </br>
 | 
						|
        {{- end -}}
 | 
						|
        {{- if isset .Params "date" -}}
 | 
						|
            {{ if eq .Lastmod .Date }}
 | 
						|
                <time>{{ .Date | time.Format (i18n "post.created") }}</time>
 | 
						|
            {{ else }}
 | 
						|
                <time>{{ .Lastmod | time.Format (i18n "post.updated") }}</time>
 | 
						|
            {{ end }}
 | 
						|
        {{- end -}}
 | 
						|
        </div>
 | 
						|
    </header>
 | 
						|
    {{- .Content -}}
 | 
						|
</article>
 | 
						|
{{ end }}
 |