personal-blog/layouts/_default/single.html

12 lines
350 B
HTML

{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1 style="color: #065387; font-size: 44px">{{ .Title }}</h1>
<h2 style="color: dimgrey; font-size: 24px">{{ .Description }}</h2>
</div>
<div class="content" style="text-align: justify">
{{ .Content }}
</div>
{{ partial "footer.html" . }}