personal-blog/layouts/_default/single.html

12 lines
265 B
HTML

{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1>{{ .Title }}</h1>
<h2 style="color: dimgrey">{{ .Description }}</h2>
</div>
<div class="content">
{{ .Content }}
</div>
{{ partial "footer.html" . }}