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

github.com/gevhaz/hugo-theme-notrack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon <gevhaz@tutanota.com>2020-06-03 12:41:57 +0300
committerSimon <gevhaz@tutanota.com>2020-06-03 12:41:57 +0300
commit448af036c3d5889f68f8b8831d938cdd7623bf74 (patch)
treee277fb2252ec45b714e5551d8f37f0dcf03e5a7d /layouts
parenta083d0b41e5bd1ba9b42b5fe891bab6a8a8ecec8 (diff)
New 'image' shortcode
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/image.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/layouts/shortcodes/image.html b/layouts/shortcodes/image.html
new file mode 100644
index 0000000..b52813a
--- /dev/null
+++ b/layouts/shortcodes/image.html
@@ -0,0 +1,29 @@
+<figure class="image-shortcode{{ with .Get "class" }} {{ . }}{{ end }}" style="
+ {{- with .Get "width" }} width: {{ . }};{{ end -}}
+ {{- with .Get "height" }} height: {{ . }};{{ end -}}
+ {{- with .Get "float" }} display: inline-block; float: {{ . }}; clear: {{ . }};{{ end -}}">
+ {{- if .Get "link" -}}
+ <a href="{{ .Get "link" }}"{{ with .Get "target" }} target="{{ . }}"{{ end }}{{ with .Get "rel" }} rel="{{ . }}"{{ end }}>
+ {{- end }}
+ <img src="{{ .Get "src" }}"
+ {{- if or (.Get "alt") (.Get "caption") }}
+ alt="{{ with .Get "alt" }}{{ . }}{{ else }}{{ .Get "caption" | markdownify| plainify }}{{ end }}"
+ {{- end -}}
+ /> <!-- Closing img tag -->
+ {{- if .Get "link" }}</a>{{ end -}}
+ {{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}}
+ <figcaption>
+ {{ with (.Get "title") -}}
+ <h4>{{ . }}</h4>
+ {{- end -}}
+ {{- if or (.Get "caption") (.Get "attr") -}}<p>
+ {{- .Get "caption" | markdownify -}}
+ {{- with .Get "attrlink" }}
+ <a href="{{ . }}">
+ {{- end -}}
+ {{- .Get "attr" | markdownify -}}
+ {{- if .Get "attrlink" }}</a>{{ end }}</p>
+ {{- end }}
+ </figcaption>
+ {{- end }}
+</figure>