16 lines
		
	
	
		
			235 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			235 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  <article>
 | 
						|
 | 
						|
    <h1>{{ .Title }}</h1>
 | 
						|
 | 
						|
    <div class="barcode">
 | 
						|
      {{ .Params.url }}
 | 
						|
    </div>
 | 
						|
 | 
						|
      {{ .Content }}
 | 
						|
 | 
						|
    {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
 | 
						|
  </article>
 | 
						|
  
 | 
						|
{{ end }}
 |