aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/layouts/shortcodes/blocks/link-down.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/docsy/layouts/shortcodes/blocks/link-down.html')
-rw-r--r--themes/docsy/layouts/shortcodes/blocks/link-down.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/docsy/layouts/shortcodes/blocks/link-down.html b/themes/docsy/layouts/shortcodes/blocks/link-down.html
new file mode 100644
index 0000000..6395866
--- /dev/null
+++ b/themes/docsy/layouts/shortcodes/blocks/link-down.html
@@ -0,0 +1,7 @@
+{{ with .Parent }}
+{{ $id := $.Get "id" | default (printf "td-block-%d" ( add .Ordinal 1 )) }}
+{{ $color := $.Get "color" | default "blue" }}
+<a class="btn btn-link text-{{ $color }}" href="#{{ $id }}"><i class="fa fa-chevron-circle-down" style="font-size: 400%"></i></a>
+{{ else }}
+{{ errorf "The link-down shortcode is supposed to be nested inside a shortcode"}}
+{{ end }} \ No newline at end of file