[ci skip] Move the summary-with-image partials to the new location

This changed in Ananke 2.8.1
This commit is contained in:
Luca Beltrame 2022-04-24 09:19:05 +02:00
parent 7cb9c7745f
commit 2644d68db3
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -1,3 +1,6 @@
{{ partial "func/warn" `You are currently using 'partial "summary-with-image"' in your project templates.
You should replace it with '.Render "summary-with-image"' as the use of this partial will be deprecated in future releases.
More info here: https://github.com/theNewDynamic/gohugo-theme-ananke/releases/tag/v2.8.1` }}
{{ $featured_image := partial "func/GetFeaturedImage.html" . }}
{{ if $featured_image }}
{{ $default_image := (trim .Site.Params.featured_image "/") | relURL }}
@ -13,23 +16,23 @@
{{ $featured_image := (trim $featured_image "/") | absURL }}
{{/* Don't put the featured image in the summary if it's the default one */}}
{{ if not (.Scratch.Get "same_image") }}
<div class="pr3-ns mb4 mb0-ns w-100 w-40-ns">
<a href="{{.Permalink}}" class="db grow">
<div class="{{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3-ns" "pr3-ns" }} mb4 mb0-ns w-100 w-40-ns">
<a href="{{.RelPermalink}}" class="db grow">
<img src="{{ $featured_image }}" class="img" alt="image from {{ .Title }}">
</a>
</div>
{{ end }}
{{ end }}
<div class="blah w-100{{ if and ($featured_image) (not (.Scratch.Get "same_image")) }} w-60-ns pl3-ns{{ end }}">
<div class="blah w-100{{ if and ($featured_image) (not (.Scratch.Get "same_image")) }} w-60-ns {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pr3-ns" "pl3-ns" }}{{ end }}">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="{{.Permalink}}" class="color-inherit dim link">
<a href="{{.RelPermalink}}" class="color-inherit dim link">
{{ .Title }}
</a>
</h1>
<div class="f6 f5-l lh-copy nested-copy-line-height nested-links">
{{ .Summary }}
</div>
<a href="{{.Permalink}}" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">{{ $.Param "read_more_copy" | default (i18n "readMore") }}</a>
<a href="{{.RelPermalink}}" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">{{ $.Param "read_more_copy" | default (i18n "readMore") }}</a>
{{/* TODO: add author
<p class="f6 lh-copy mv0">By {{ .Author }}</p> */}}
</div>