Browse Source

trying to fix banner image load

master
jk 3 years ago
parent
commit
7299661066
  1. 2
      content/article/why-pixelfed/index.md
  2. 2
      themes/nipponalba/layouts/index.html

2
content/article/why-pixelfed/index.md

@ -10,7 +10,7 @@ tag:
- "pixelfed"
Image: ["/images/why-pixelfed/pixelfedbanner.png"]
Type: ["article"]
DibleComments: false
DisableComments: false
---
Since December 2018 I have hosted a Pixelfed server, intended for family and friend use but in actuality currently only used by myself and very occasionally my wife.

2
themes/nipponalba/layouts/index.html

@ -22,7 +22,7 @@
<section class="latest_articles"><h2>Latest articles</h2>
{{ range (first 3 (where .Site.RegularPages "Type" "=" "article")) }}
<article class="index-article h-entry entry"><a class="u-url" href="{{ .Permalink }}" title="{{ .Title }}">
{{ if .Page.Params.image }}{{ range first 1 .Page.Params.image }} <img class="banner u-photo" src="{{ replace . "images" "images/300" }}"/>{{ end }}{{ end }}<span class="p-name entry-title">{{ .Title }}</span>
{{ if .Page.Params.image }}{{ range first 1 (.Page.Params.image | safeURL) }} <img class="banner u-photo" src="{{ replace . "images" "images/300" }}"/>{{ end }}{{ end }}<span class="p-name entry-title">{{ .Title }}</span>
<section class="e-content">{{ .Description }}</section>
</a></article>{{ end }}</section>
<section class="latest_photos"><h2>Latest photos</h2>

Loading…
Cancel
Save