2022-03-31 04:22:55 +00:00
|
|
|
{{ define "main" }}
|
2023-12-15 16:26:57 +00:00
|
|
|
<section class="section-sm">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2022-03-31 04:22:55 +00:00
|
|
|
<div class="col-lg-8 mb-100 mb-lg-0">
|
|
|
|
|
|
|
|
|
|
|
|
{{- $pctx := . -}}
|
|
|
|
{{- $pages := .Site.RegularPages -}}
|
|
|
|
{{ $paginator := .Paginate (where $pages "Type" "blog") }}
|
|
|
|
{{ range sort .Data.Pages }}
|
|
|
|
|
|
|
|
<article class="posts featured-post">
|
|
|
|
<div class="row mb-20">
|
|
|
|
|
|
|
|
{{ if .Params.Image }}
|
|
|
|
{{ $article := .Permalink | relURL }}
|
|
|
|
{{ $image := .Params.Image | relURL }}
|
|
|
|
<div class="col-md-4">
|
|
|
|
<img src="{{ print $article $image }}" class="posts-img" alt="{{ .Title | markdownify }}">
|
|
|
|
</div>
|
|
|
|
<div class="col-md-7">
|
|
|
|
{{ else }}
|
|
|
|
<div class="col-md-10">
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="card-body pt-0">
|
|
|
|
{{ range .Params.Categories }}
|
|
|
|
<a href="{{ `categories/` | relLangURL }}{{ . | urlize | lower }}"
|
|
|
|
class="text-primary">{{ . | title | humanize }}</a>
|
|
|
|
{{ end }}
|
|
|
|
<a href="{{ .Permalink }}" class="h3 my-3 pt-0">{{ .Title | markdownify }}</a>
|
|
|
|
<div class="mb-3 post-meta">
|
|
|
|
{{ if not .Params.HideDate }}
|
2023-08-09 19:18:31 +00:00
|
|
|
<span>{{ (time .Date) | time.Format (.Params.date_format | default "02 January 2006" ) }}</span>
|
2022-03-31 04:22:55 +00:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
<p class="card-text">{{ .Summary }}</p>
|
|
|
|
<div class="d-flex justify-content-end">
|
|
|
|
<a href="{{ .Permalink }}" class="btn btn-outline-primary">{{ i18n "readMore"
|
|
|
|
}}</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
2023-12-15 16:26:57 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- sidebar-->
|
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
|
|
|
|
<!-- pagination -->
|
|
|
|
<div class="col-12 mt-5">
|
|
|
|
{{ template "_internal/pagination.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2023-08-09 19:18:31 +00:00
|
|
|
{{ end }}
|