github.com/ffrizzo/goreleaser@v0.92.0/www/layouts/page/customizations.html (about)

     1  {{ define "main" }}
     2  	<h1>{{ .Title }}</h1>
     3  
     4  	{{ .Content }}
     5  
     6  	<h2>Table of Contents:</h2>
     7  	<ul class="Menu" style="padding: 0px; position: inherit; margin: 15px 0 0px 20px;">
     8  		{{ range where .Site.Pages.ByWeight "Params.series" "customization" }}
     9  			<li class="item" style="padding: 0px">
    10  				<a href="#{{ .Title }}">{{ .Title }}</a>
    11  			</li>
    12  		{{ end }}
    13  	</ul>
    14  
    15  	{{ range where .Site.Pages.ByWeight "Params.series" "customization" }}
    16  		<div class="Page" id="{{ .Title }}">
    17  			<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
    18  			{{ .Content }}
    19  		</div>
    20  	{{ end }}
    21  {{ end }}