mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			718 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			718 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="{{ .Lang }}">
 | 
						|
{{ partial "head.html" . }}
 | 
						|
 | 
						|
<body>
 | 
						|
{{partial "search.html" .}}
 | 
						|
<div class="singlePage">
 | 
						|
    <!-- Begin actual content -->
 | 
						|
    {{partial "header.html" .}}
 | 
						|
    <article>
 | 
						|
      {{if .Title}}<h1>{{ .Title }}</h1>{{end}}
 | 
						|
      <p class="meta">
 | 
						|
        {{ i18n "last_updated" }} {{ partial "date-fmt.html" .}} 
 | 
						|
          {{ partial "github.html" . }}
 | 
						|
      </p>
 | 
						|
      <ul class="tags">
 | 
						|
          {{ range (.GetTerms "tags") }}
 | 
						|
          <li><a href="{{ .Permalink }}">{{ .LinkTitle | humanize }}</a></li>
 | 
						|
          {{ end }}
 | 
						|
      </ul>
 | 
						|
      {{partial "toc.html" .}}
 | 
						|
      {{partial "textprocessing.html" . }}
 | 
						|
    </article>
 | 
						|
    {{partial "footer.html" .}}
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html>
 |