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

17 lines
442 B
HTML
Raw Normal View History

{{ define "main" }}
<div class="project-container">
<section class="project-list">
<h4>What else</h4>
<ul>
{{ range (where .Site.RegularPages "Type" "in" "projects").ByDate.Reverse }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</section>
<section class="project">
<h2>{{ .Title }}</h2>
{{ .Content }}
</section>
</div>
{{ end }}