12 lines
		
	
	
		
			244 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			244 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{{ define "main" }}
							 | 
						||
| 
								 | 
							
								{{ .Content }}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Recent posts:
							 | 
						||
| 
								 | 
							
								<ul class="post-list">
							 | 
						||
| 
								 | 
							
								    {{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
							 | 
						||
| 
								 | 
							
								    {{ partial "post.html" . }}
							 | 
						||
| 
								 | 
							
								    {{ end }}
							 | 
						||
| 
								 | 
							
								</ul>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{{ end }}
							 |