13 lines
		
	
	
		
			431 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			431 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<section class="h-feed">
 | 
						|
    <h2>{{ .Title }}</h2>
 | 
						|
    <ul>
 | 
						|
        {{ range .Pages }}
 | 
						|
            <li class="h-entry">
 | 
						|
                <a href="{{ .RelPermalink }}" class="p-name u-url">{{ .Title }}</a>
 | 
						|
                <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
 | 
						|
            </li>
 | 
						|
        {{ end }}
 | 
						|
    </ul>
 | 
						|
</section>
 | 
						|
{{ end }} |