54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
{{ define "main" }}
|
|
|
|
<!-- blog post-->
|
|
<section class="section-sm">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 mb-10 mb-lg-0">
|
|
<article>
|
|
<div class="tags-list">
|
|
{{ if .Params.tags }}
|
|
{{ partial "tags" .Params.tags }}
|
|
{{ end }}
|
|
</div>
|
|
<h1 class="mb-0 mt-2">{{ .Title }}</h1>
|
|
<p class="mt-2 mb-0">{{ i18n "published" }} {{ i18n "on" }} {{ (time .Date) | time.Format (.Params.date_format | default "2 January 2006") }}. {{ i18n "readingTime" }} {{ i18n "readingTimeValue" .ReadingTime }}.</p>
|
|
{{ if .IsTranslated }}
|
|
{{ range .Translations }}
|
|
<p class="mb-1">{{ .Lang }} : <a href="{{ .Permalink }}">{{ .Title }}</a></p>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if .Params.Image }}
|
|
{{ $article := .Permalink | relURL }}
|
|
{{ $image := .Params.Image | relURL }}
|
|
<img src="{{ print $article $image }}" class="mb-4 post-img" alt="{{ .Title | markdownify }}">
|
|
{{ end }}
|
|
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ if .Site.Params.Info.related }}
|
|
<div class="related">{{ partial "related" . }}</div>
|
|
|
|
</article>
|
|
|
|
|
|
{{ if .Site.Params.issoComments }}
|
|
{{- partial "isso" . -}}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<!-- sidebar-->
|
|
{{ partial "sidebar.html" . }}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
{{ end }}
|