github.com/projectcontour/contour@v1.28.2/site/themes/contour/layouts/_default/list.html (about)

     1  {{ define "main" }}
     2  	<main>
     3  		{{ if or .Title .Content }}
     4  		<div>
     5  			{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
     6  			{{ with .Content }}<div>{{ . }}</div>{{ end }}
     7  		</div>
     8  		{{ end }}
     9  
    10  		{{ range .Paginator.Pages }}
    11  			{{ .Render "summary" }}
    12  		{{ end }}
    13  	</main>
    14  {{ end }}