14 lines
		
	
	
		
			263 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			263 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <article>
 | |
| 
 | |
|     {{ with .Params.cover }}
 | |
|       <div class="cover" style="background-image:url('{{ . }}');"></div>
 | |
|     {{ end }}
 | |
| 
 | |
|       {{ .Content }}
 | |
| 
 | |
|     {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
 | |
|   </article>
 | |
|   
 | |
| {{ end }}
 |