personal-blog/layouts/post/single.html

28 lines
506 B
HTML
Raw Normal View History

2021-03-30 20:50:34 +00:00
{{ partial "header.html" . }}
2021-11-28 17:06:05 +00:00
<div class="header" style="background-color: whitesmoke; opacity: 50%">
2021-03-30 20:50:34 +00:00
<h1>{{ .Title }}</h1>
<h2>{{ .Description }}</h2>
</div>
<div class="content">
{{ partial "post_meta.html" . }}
2022-01-03 14:55:21 +00:00
<span style="text-align: justify">
2021-03-30 20:50:34 +00:00
{{ .Content }}
2022-01-03 14:55:21 +00:00
</span>
2021-03-30 20:50:34 +00:00
{{ partial "share.html" . }}
{{ partial "prev_next_post.html" . }}
{{ partial "commento.html" . }}
{{ partial "disqus.html" . }}
{{ partial "telegram.html" . }}
</div>
{{ partial "footer.html" . }}