mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-21 22:01:34 +00:00
.github
assets
content
data
layouts
_default
_markup
render-image.html
render-link.html
baseof.html
section.html
single.html
taxonomy.html
term.html
partials
404.html
index.html
static
.gitignore
.hugo_build.lock
.prettierrc
CODE_OF_CONDUCT.md
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
9 lines
385 B
HTML
9 lines
385 B
HTML
{{$src := .Destination | safeURL }}
|
|
{{$external := strings.HasPrefix $src "http" }}
|
|
{{- if $external -}}
|
|
<img src="{{ $src }}" alt="{{ .Text }}" {{ with .Title }} title="{{ . }}" {{ end }} />
|
|
{{- else -}}
|
|
{{$fixedUrl := (cond (hasPrefix $src "/") $src (print "/" $src)) | urlize}}
|
|
<img src="{{ $fixedUrl }}" alt="{{ .Text }}" {{ with .Title }} title="{{ . }}" {{ end }} />
|
|
{{- end -}}
|