mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-09 21:49:41 +00:00
Support local resource images in content
This commit is contained in:
parent
fa18460df0
commit
fb21e83c33
|
@ -1,6 +1,12 @@
|
|||
|
||||
{{ if .Params.image }}
|
||||
<img class="mb-3 header-image" src='{{ .Params.image }}' />
|
||||
{{ .Scratch.Set "image" .Params.image }}
|
||||
{{ if hasPrefix .Params.image "resource:" }}
|
||||
{{ $resource := .Resources.GetMatch (replace .Params.image "resource:" "") }}
|
||||
{{ .Scratch.Set "image" ($resource.Resize "2000x").RelPermalink }}
|
||||
{{ end }}
|
||||
|
||||
<img class="mb-3 header-image" src='{{ .Scratch.Get "image" }}' />
|
||||
{{ end }}
|
||||
|
||||
<h1 class="display-4">{{ .Title }}</h1>
|
||||
|
|
Loading…
Reference in a new issue