mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-22 05:00:39 +00:00
add feature image for blog posts
This commit is contained in:
parent
fd7c3a72c1
commit
e1ea8a82fe
@ -1,11 +1,30 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<article class="gblog-post">
|
<article class="gblog-post">
|
||||||
<header class="gblog-post__header">
|
<header class="gblog-post__header">
|
||||||
|
{{ $source := ($.Resources.ByType "image").GetMatch "{*feature*,*cover*,*thumbnail*}" }}
|
||||||
|
{{ with $source }}
|
||||||
|
<picture class="gblog-post__figure">
|
||||||
|
{{ with $.Resources.GetMatch (replace (.Title) (path.Ext (.Title)) ".webp") }}
|
||||||
|
<source srcset="{{ .Permalink }}" type="image/webp">
|
||||||
|
{{ end }}
|
||||||
|
{{ $featured := .Fill (printf "950x285 %s" (default "Smart" .Params.anchor)) }}
|
||||||
|
<source srcset="{{ $featured.Permalink }}">
|
||||||
|
<img src="{{ $featured.Permalink }}" alt="{{ default $.Title .Params.description }}" >
|
||||||
|
</picture>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<h1>{{ partial "title" . }}</h1>
|
<h1>{{ partial "title" . }}</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<section class="gblog-markdown">
|
<section class="gblog-markdown">
|
||||||
{{ partial "content" . }}
|
{{ partial "content" . }}
|
||||||
|
{{ with $source }}
|
||||||
|
{{ if .Params.credits }}
|
||||||
|
<ul class="gblog-post__credits">
|
||||||
|
<li>{{ . | humanize }} image: {{ .Params.credits | safeHTML }}</li>
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -261,6 +261,15 @@ img {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__figure {
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
margin-bottom: $padding-32;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
:not(:first-child).no-wrap {
|
:not(:first-child).no-wrap {
|
||||||
margin-left: $padding-8;
|
margin-left: $padding-8;
|
||||||
@ -270,6 +279,13 @@ img {
|
|||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__credits {
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
color: $gray-600;
|
||||||
|
font-size: 0.9em;
|
||||||
|
list-style-type: none
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.gblog-footer {
|
.gblog-footer {
|
||||||
@ -414,6 +430,11 @@ img {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gblog-post__figure,
|
||||||
|
.gblog-post__credits {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.gblog-error {
|
.gblog-error {
|
||||||
padding: $padding-16 * 6 $padding-16;
|
padding: $padding-16 * 6 $padding-16;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user