summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-15 15:18:26 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-15 15:18:26 -0300
commit9440b71c57270f55841209bf240a75ee532ac50a (patch)
treed7b361f580da538dd42f2a83455e636e661263ba /layouts
parent6cca5a458ff08f4390721e24cd44acdae39842c6 (diff)
Added about page
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/img.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html
new file mode 100644
index 0000000..918eff6
--- /dev/null
+++ b/layouts/shortcodes/img.html
@@ -0,0 +1,22 @@
+<!--
+ class: class of the figure
+ link: url the image directs to
+ alt: alternative text
+ caption: caption
+ mouse: what the image says when moused over ("title" in HTML)
+-->
+<a class="picture-link" href="{{ .Get "src"}}">
+ <figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
+ {{- with .Get "link"}}<a href="{{.}}">{{ end -}}
+ <img src="{{ .Get "src" }}"
+ {{- with .Get "mouse" }} title="{{.}}"{{ end -}}
+ {{- with .Get "alt" }} alt="{{.}}"{{ end -}}
+ >
+ {{- if .Get "link"}}</a>{{ end -}}
+ {{- with .Get "caption" -}}
+ <figcaption>
+ {{- . -}}
+ </figcaption>
+ {{- end -}}
+ </figure>
+</a>