gcg-website/layouts/_default/single.html

53 lines
1.9 KiB
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ define "main" }}
2023-06-11 21:13:11 +02:00
<section class="section">
2022-03-18 13:35:57 +01:00
<div class="container">
<div class="row">
<div class="col-lg-8 order-2 order-lg-1">
<div class="row">
<div class="col-12 mb-4">
<img src="{{ .Params.image | relURL }}" alt="{{ .Title }}" class="img-fluid w-100">
2022-03-18 13:35:57 +01:00
</div>
<div class="col-12">
<div class="row mb-3">
2023-06-09 20:35:28 +02:00
<div class="col-6 mb-md-0 text-white text-body-tertiary">
<span class="fw-bold me-1">{{ i18n "posted_by" }}:</span>
2023-05-29 16:22:34 +02:00
{{ range $index, $elements := where (where .Site.RegularPages "Type" "author") "File.BaseFileName" "in" .Params.author }}
{{ if ne $index 0 }}, {{ end }}
{{ if .Params.simplified }}
{{ .Title }}
{{ else }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
{{ end }}
</div>
2023-06-09 20:35:28 +02:00
<div class="col-6 mb-3 mb-md-0 text-body-tertiary">
<span class="fw-bold me-1">{{ i18n "date" }}:</span>
{{ time.Format "02. Jan 2006" .PublishDate }}
</div>
</div>
<div class="row">
2023-06-09 20:35:28 +02:00
<div class="col-12 mb-md-0 text-body-tertiary">
<span class="fw-bold me-1">{{ i18n "category" }}:</span>
2023-05-29 16:22:34 +02:00
{{ range $index, $elements := .Params.categories }}
{{ if ne $index 0 }}, {{ end }}
<a href="{{ `categories/` | relLangURL }}{{ . | urlize | lower }}">{{ . | title }}</a>
{{ end }}
</div>
</div>
2022-03-18 13:35:57 +01:00
</div>
<div class="col-12 my-4">
<div class="border-bottom"></div>
</div>
2023-06-11 21:13:11 +02:00
<div class="col-12 mb-5 content text-justify">
2022-03-18 13:35:57 +01:00
{{ .Content }}
</div>
</div>
</div>
{{ partial "blog-sidebar.html" . }}
</div>
</div>
</section>
{{ end }}