About pages and similar might not have a meaningful date value, so avoid formatting the value if not present, since that would output a nonsensical value like “January 1, 0001”.
		
			
				
	
	
		
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<h1 class="post-title">{{ .Title }}</h1>
 | 
						|
    {{ if .Date }}
 | 
						|
    <time>{{ .Date.Format "January 2, 2006" }}</time>
 | 
						|
    {{ end }}
 | 
						|
    <div>
 | 
						|
        <p>
 | 
						|
        {{ .Content }}
 | 
						|
        </p>
 | 
						|
    </div>
 | 
						|
    {{ template "_internal/disqus.html" . }}
 | 
						|
 | 
						|
    <div class="page-footer">
 | 
						|
        {{if .Params.tags}}
 | 
						|
        <hr class="footer-divider">
 | 
						|
        {{ range .Params.tags }}
 | 
						|
            <a class="tag" href="/tags/{{ . | urlize }}">#{{.}}</a>
 | 
						|
        {{ end }}
 | 
						|
      {{ end }}
 | 
						|
    </div>
 | 
						|
 | 
						|
{{end}} |