Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pech <windows@spech.de>2019-09-14 17:12:35 +0300
committerSebastian Pech <windows@spech.de>2019-09-14 17:12:35 +0300
commit61dce168cd541c4966c8da7613f1844a62666049 (patch)
tree14923a38e4c76a9146d79088d49e68c2c9dfff86
parent25fe24f466e77a534d08aa870a1ee86d50b5c960 (diff)
fixed resize
-rw-r--r--layouts/partials/content_card_header.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/content_card_header.html b/layouts/partials/content_card_header.html
index ad10670..24809fa 100644
--- a/layouts/partials/content_card_header.html
+++ b/layouts/partials/content_card_header.html
@@ -19,10 +19,10 @@
{{ $fullsize := .Scratch.Get "fullsize" }}
{{- with $featured -}}
{{ if $fullsize }}
- {{ $thumb := .Resize "360x" }}
+ {{ $thumb := .Resize "1108x" }}
<img class="card-img-top" src="{{ $thumb.RelPermalink }}" alt="{{ $sitetitle }}" title="{{ $sitetitle }}">
{{ else }}
- {{ $thumb := .Resize "800x" }}
+ {{ $thumb := .Resize "360x" }}
<img class="card-img-top" src="{{ $thumb.RelPermalink }}" alt="{{ $sitetitle }}" title="{{ $sitetitle }}">
{{ end }}
{{ end }}