personal-blog/layouts/_default/single.html

12 lines
350 B
HTML
Raw Normal View History

2021-03-30 20:50:34 +00:00
{{ partial "header.html" . }}
2022-01-04 23:43:07 +00:00
<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>
2021-03-30 20:50:34 +00:00
</div>
<div class="content" style="text-align: justify">
2021-03-30 20:50:34 +00:00
{{ .Content }}
</div>
{{ partial "footer.html" . }}