2021-07-20 19:36:15 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
|
2024-08-27 22:14:33 +02:00
|
|
|
{{ partial "top_button.html" . }}
|
|
|
|
|
2021-07-20 19:36:15 +02:00
|
|
|
{{ partial "navigation.html" . }}
|
|
|
|
|
2021-09-23 15:20:30 +02:00
|
|
|
{{ partial "bradcrumb.html" . }}
|
|
|
|
|
2021-07-20 19:36:15 +02:00
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row bg-one">
|
|
|
|
<div class="col-lg-8 offset-lg-2 text-center">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<ul class="list-inline mb-50">
|
|
|
|
<li class="list-inline-item"><a href="{{ `author/` | relLangURL }}{{ .Params.Author | urlize }}/">{{ .Params.Author }}</a></li>
|
2022-02-27 11:27:43 +01:00
|
|
|
<li class="list-inline-item">Published Date: {{ with site.Params.dateFormat | default "2006-01-02" | .Date.Format }} {{ . }} {{ end }}</li>
|
|
|
|
<li class="list-inline-item">Last Modified: {{ with site.Params.dateFormat | default "2006-01-02" | .Lastmod.Format }} {{ . }} {{ end }}</li>
|
2021-07-20 19:36:15 +02:00
|
|
|
</ul>
|
|
|
|
<img class="img-fluid mb-50 lozad" src="{{ .Params.Image | absURL }}" alt="blog-image">
|
2022-02-05 20:49:09 +01:00
|
|
|
|
|
|
|
{{ partial "get_tags.html" . }}
|
|
|
|
|
2021-07-20 19:36:15 +02:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-8 offset-lg-2">
|
|
|
|
<div class="post-single-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
{{ if site.Params.post_share }}
|
2022-02-14 09:00:39 +01:00
|
|
|
{{ partial "post_share.html" . }}
|
2021-07-20 19:36:15 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<!-- comments -->
|
|
|
|
{{ if site.Params.comments }}
|
|
|
|
{{ partial "comments.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ end }}
|