15 lines
350 B
HTML
15 lines
350 B
HTML
{{ define "main" }}
|
|
{{ if not .Site.Params.deprecated }}
|
|
{{ .Content }}
|
|
{{ else }}
|
|
<div class="section-index">
|
|
{{ range where .Site.Pages "Section" "releases" }}
|
|
{{ if not .IsNode }}
|
|
<div class="entry">
|
|
<h5><a href="{{ .RelPermalink }}">{{ .Title }}</a></h5>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }} |