13 lines
		
	
	
		
			279 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			279 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <h1>{{ .Title }}</h1>
 | |
|   {{ .Content }}
 | |
|   <section>
 | |
|     {{ range .Pages }}
 | |
|       <article>
 | |
|         <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
 | |
|             <p>{{ .Content | truncate 100 }}</p>
 | |
|       </article>
 | |
|     {{ end }}
 | |
|   </section>
 | |
| {{ end }}
 |