1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/www/layouts/page/customizations.html
2018-05-01 20:32:46 -07:00

22 lines
579 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<h2>Table of Contents:</h2>
<ul class="Menu" style="padding: 0px; position: inherit; margin: 15px 0 0px 20px;">
{{ range where .Site.Pages.ByWeight "Params.series" "customization" }}
<li class="item" style="padding: 0px">
<a href="#{{ .Title }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ range where .Site.Pages.ByWeight "Params.series" "customization" }}
<div class="Page" id="{{ .Title }}">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
{{ .Content }}
</div>
{{ end }}
{{ end }}