lubitest/layouts/_default/single.html

15 lines
280 B
HTML
Raw Permalink Normal View History

2024-12-12 19:20:48 +00:00
{{ define "header" }}
<div class="post-heading">
<h1>{{ .Title }}</h1>
</div>
{{ end }}
{{ define "main" }}
<div class="row">
<div class="ten columns offset-by-one">
<article>
{{ .Content }}
</article>
</div>
</div>
{{ end }}