use permalink for page bundle images
This commit is contained in:
parent
3706ace5e8
commit
49eb66136e
|
@ -9,7 +9,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
{{ $image = .Params.Image }}
|
{{ $image = .Params.Image }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $image = path.Join "/" (path.Join .File.Dir .Params.Image) }}
|
{{ $image = print .Permalink "/" .Params.Image }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ $mscratch.Add "articles" (dict
|
{{ $mscratch.Add "articles" (dict
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
{{ $image = .Params.Image }}
|
{{ $image = .Params.Image }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $image = path.Join (path.Join .File.Dir .Params.Image) }}
|
{{ $image = print .Permalink "/" .Params.Image }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ $mscratch.Add "articles" (dict
|
{{ $mscratch.Add "articles" (dict
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
<img src="{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
<img src="{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<img src="/{{ path.Join .File.Dir .Params.Image }}" alt="{{ .Params.Alt }}" />
|
<img src="{{ .Permalink }}/{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
{{ $image = .Params.Image }}
|
{{ $image = .Params.Image }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $image = path.Join "/" (path.Join .File.Dir .Params.Image) }}
|
{{ $image = print .Permalink "/" .Params.Image }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<a class="featuredCardLink" href="{{ .Permalink }}">
|
<a class="featuredCardLink" href="{{ .Permalink }}">
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
{{ $image = .Params.Image }}
|
{{ $image = .Params.Image }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $image = path.Join (path.Join .File.Dir .Params.Image) }}
|
{{ $image = print .Permalink "/" .Params.Image }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<meta property="og:image"
|
<meta property="og:image"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
{{ $image = .Params.Image }}
|
{{ $image = .Params.Image }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $image = path.Join (path.Join .File.Dir .Params.Image) }}
|
{{ $image = print .Permalink "/" .Params.Image }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<meta name="twitter:image"
|
<meta name="twitter:image"
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
{{ if or (hasPrefix .Params.Image "/") (hasPrefix .Params.Image "http://") (hasPrefix .Params.Image "https://") }}
|
||||||
<img src="{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
<img src="{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<img src="/{{ path.Join .File.Dir .Params.Image }}" alt="{{ .Params.Alt }}" />
|
<img src="{{ .Permalink }}/{{ .Params.Image }}" alt="{{ .Params.Alt }}" />
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Params.ImageCaption }}
|
{{ if .Params.ImageCaption }}
|
||||||
<figcaption>
|
<figcaption>
|
||||||
|
|
Loading…
Reference in New Issue