27 lines
		
	
	
		
			307 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			307 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<h1>{{ .Title }}</h1>
 | 
						|
<div class="single summary">
 | 
						|
    {{.Summary}}
 | 
						|
 | 
						|
</div>
 | 
						|
{{ partial "metadata.html" . }}
 | 
						|
<br><br>
 | 
						|
 | 
						|
 | 
						|
<div class="image single"><img src="{{.Params.image}}" alt=""></div>
 | 
						|
<article class="single">
 | 
						|
    <div>
 | 
						|
        {{ .Content }}
 | 
						|
    </div>
 | 
						|
 | 
						|
</article>
 | 
						|
{{ end }}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |