aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-09-04 11:13:55 -0400
committertdro <tdro@noreply.example.com>2022-09-04 11:13:55 -0400
commit24d40c1573ffefc83f82658c9523c66d7940e2a6 (patch)
treec13a594682450152ad81390b58d2944b5439861f /themes
parent62144bb9817cdb0a7a388c16efb38c4cb473bee8 (diff)
downloadcanory-24d40c1573ffefc83f82658c9523c66d7940e2a6.tar.gz
canory-24d40c1573ffefc83f82658c9523c66d7940e2a6.tar.bz2
canory-24d40c1573ffefc83f82658c9523c66d7940e2a6.zip
themes/default/layouts/shortcodes: Add reaction short-code
Diffstat (limited to 'themes')
-rw-r--r--themes/default/layouts/shortcodes/react.html29
-rw-r--r--themes/default/layouts/shortcodes/react.rss.xml18
2 files changed, 47 insertions, 0 deletions
diff --git a/themes/default/layouts/shortcodes/react.html b/themes/default/layouts/shortcodes/react.html
new file mode 100644
index 0000000..7eb7920
--- /dev/null
+++ b/themes/default/layouts/shortcodes/react.html
@@ -0,0 +1,29 @@
+{{- $text := default "react" (.Get "text" | default (.Get 0)) -}}
+{{- $source := default "" (.Get "source" | default (.Get 1)) -}}
+{{- $title := default $text (.Get "title" | default (.Get 2)) -}}
+{{- $alternate := default $title (.Get "alternate" | default (.Get 3)) -}}
+
+{{- $author := .Page.Section -}}
+
+{{- $image := partial "function-caches-images.html"
+ (dict
+ "Source" $source
+ "Fit" "100x100"
+ "Target" (print (partial "function-paths.html" "media") "/" $author "/")
+ "Copy" (print (partial "function-paths.html" "media") "/" $author "/react-" (path.Base $source))
+ "AlternateCopy" (print (partial "function-paths.html" "media") "/" $author "/react-" (path.BaseName $source) ".webp")
+ )
+-}}
+
+<reaction-hover title="{{ $title }}">
+ {{ $text | markdownify }}
+ <a href="{{ $image.Permalink }}">
+ <img
+ width="{{ $image.Width }}"
+ height="{{ $image.Height }}"
+ title="{{ $title }}"
+ alt="{{ $alternate }}"
+ src="{{ $image.Permalink }}"
+ />
+ </a>
+</reaction-hover>
diff --git a/themes/default/layouts/shortcodes/react.rss.xml b/themes/default/layouts/shortcodes/react.rss.xml
new file mode 100644
index 0000000..5ed5f80
--- /dev/null
+++ b/themes/default/layouts/shortcodes/react.rss.xml
@@ -0,0 +1,18 @@
+{{- $text := default "react" (.Get "text" | default (.Get 0)) -}}
+{{- $source := default "" (.Get "source" | default (.Get 1)) -}}
+{{- $title := default $text (.Get "title" | default (.Get 2)) -}}
+{{- $alternate := default $title (.Get "alternate" | default (.Get 3)) -}}
+
+{{- $author := .Page.Section -}}
+
+{{- $image := partial "function-caches-images.html"
+ (dict
+ "Source" $source
+ "Fit" "100x100"
+ "Target" (print (partial "function-paths.html" "media") "/" $author "/")
+ "Copy" (print (partial "function-paths.html" "media") "/" $author "/react-" (path.Base $source))
+ "AlternateCopy" (print (partial "function-paths.html" "media") "/" $author "/react-" (path.BaseName $source) ".webp")
+ )
+-}}
+
+{{ $text | markdownify }} (<a title="{{ $title }}" href="{{ $image.Permalink }}">reaction</a>)