forked from Bunteshaus/bunteshaus.de
17 lines
392 B
HTML
17 lines
392 B
HTML
{{ define "intro" }}
|
|
{{ if ne .Content "" }}
|
|
{{ partial "snippets/content" (dict "content" .Content) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<div>
|
|
{{ range .Pages }}
|
|
<div>🗀 <a href="{{ .Permalink }}" class="underline">{{ .Title }}</a></div>
|
|
{{ end }}
|
|
{{ range .Resources }}
|
|
<div>🗀 <a href="{{ .Permalink }}">{{ . }}</a></div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|