mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{{ define "main" }}
|
|
<article class="gblog-post">
|
|
<header class="gblog-post__header">
|
|
{{ $source := ($.Resources.ByType "image").GetMatch "{*feature*,*cover*,*thumbnail*}" }}
|
|
{{ with $source }}
|
|
<div class="gblog-post__feature">
|
|
<picture>
|
|
{{ $featured := .Fill (printf "910x280 %s" (default "Smart" .Params.anchor)) }}
|
|
<source srcset="{{ $featured.Permalink }}" />
|
|
<img src="{{ $featured.Permalink }}" alt="{{ default $.Title .Params.description }}" />
|
|
</picture>
|
|
{{ with $source.Params.credits }}
|
|
<span>Credits: {{ . | $.Page.RenderString | safeHTML }}</span>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
<h1 class="gblog-post__title">{{ partial "title" . }}</h1>
|
|
|
|
{{ if or (eq .Type (default "posts" .Site.Params.GeekblogContentSection)) (eq .Type "post") }}
|
|
<div class="flex flex-wrap align-center gblog-post__meta gblog-post__meta--head">
|
|
{{ partial "metadata.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
</header>
|
|
<section class="gblog-markdown">
|
|
{{ partial "content" . }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|