28 lines
587 B
HTML
28 lines
587 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">
|
|
|
|
{{ partial "post_meta.html" . }}
|
|
|
|
<span style="text-align: justify">
|
|
{{ .Content }}
|
|
</span>
|
|
|
|
{{ partial "share.html" . }}
|
|
|
|
{{ partial "prev_next_post.html" . }}
|
|
|
|
{{ partial "commento.html" . }}
|
|
|
|
{{ partial "disqus.html" . }}
|
|
|
|
{{ partial "telegram.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|