mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2024-11-22 14:21:31 +00:00
19 lines
442 B
HTML
19 lines
442 B
HTML
|
{{- define "main" -}}
|
||
|
|
||
|
{{ partial "page_header.html" . }}
|
||
|
|
||
|
<div class="universal-wrapper">
|
||
|
{{ with .Content }}
|
||
|
<div class="article-style">{{ . }}</div>
|
||
|
{{ end }}
|
||
|
<ul class="list-unstyled">
|
||
|
{{ if gt (len .Sections) 0}}
|
||
|
{{ range .Sections }}
|
||
|
<li><h5><a href="{{.RelPermalink}}">{{.LinkTitle}}</a></h5> {{with .Params.summary}}<p>{{. | plainify | emojify}}</p>{{end}}</li>
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
{{- end -}}
|