anneso/layouts/taxonomy/category.html

15 lines
263 B
HTML

{{ define "main" }}
<div class="info">
{{ with .Site.GetPage "/" }}
<a href="/">
<h1>{{ .Title }}</h1>
</a>
{{ .Content }}
{{ end }}
</div>
<div class="portfolio">
{{ partial "categories" . }}
{{ partial "projects" . }}
</div>
{{ end }}