anneso/layouts/_default/index.html

13 lines
212 B
HTML
Raw Normal View History

2021-03-13 00:20:09 +01:00
{{ define "main" }}
2021-04-05 17:54:05 +02:00
<div class="info">
<a href="/">
<h1>{{ .Title }}</h1>
</a>
{{ .Content }}
</div>
<div class="portfolio">
{{ partial "categories" . }}
{{ partial "projects" . }}
</div>
2021-03-13 00:20:09 +01:00
{{ end }}