mirror of
				https://github.com/christian1701/hugo-theme-console.git
				synced 2025-11-03 22:19:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			492 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			492 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<h1>{{ .Page.Title }}</h1>
 | 
						|
<br/>
 | 
						|
{{ .Content }}
 | 
						|
 | 
						|
<div class="posts-list">
 | 
						|
{{ range sort .Data.Pages "Date" "desc" }}
 | 
						|
    {{ if not .Params.private }}
 | 
						|
        <div class="post">
 | 
						|
            <p>
 | 
						|
                <div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>    
 | 
						|
                <h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
 | 
						|
                {{ .Summary }}
 | 
						|
            </p>
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
{{ end }}
 | 
						|
</div>
 | 
						|
 | 
						|
{{ end }} |