Files
sumup/themes/basic/layouts/projects/list.html

21 lines
418 B
HTML

{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<section class="projects">
<section class="projects">
{{ with .Site.GetPage "/opensource.md" }}
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<p>{{ .Summary }}</p>
{{ end }}
</section>
{{ range .Pages }}
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<p>{{ .Summary }}</p>
{{ end }}
</section>
{{ end }}