mirror of
				https://github.com/christian1701/hugo-theme-console.git
				synced 2025-11-03 22:19:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<h1>{{ .Page.Title }}</h1>
 | 
						|
{{ .Content }}
 | 
						|
<div class="image-grid">
 | 
						|
    {{ range sort .Data.Pages "Date" "desc" }}
 | 
						|
        {{ if and (isset .Params "image") .Params.image }}
 | 
						|
            <a href="{{ .Permalink }}" title="{{ .Title }}">
 | 
						|
            {{ $image := .Page.Resources.GetMatch .Params.image }}
 | 
						|
            {{ with $image }}
 | 
						|
                {{ $thumb := .Resize "400x" }}
 | 
						|
                <img src="{{ $thumb.RelPermalink }}" alt="{{ .Title }}" class="img-responsive">
 | 
						|
            {{end}}
 | 
						|
            </a>
 | 
						|
        {{ end }}
 | 
						|
    {{ end }}
 | 
						|
</div>
 | 
						|
{{ end }} |