diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/_shortcodes/badge.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/_shortcodes/badge.html b/themes/hugo-book/layouts/_shortcodes/badge.html new file mode 100644 index 0000000..0bbfcb1 --- /dev/null +++ b/themes/hugo-book/layouts/_shortcodes/badge.html @@ -0,0 +1,5 @@ +{{- $style := default "default" (.Get "style") -}} +<span class="book-badge {{ $style }}"> + {{- with .Get "title" }}<span class="book-badge-title">{{ . | plainify }}</span>{{ end -}} + {{- with .Get "value" }}<span class="book-badge-value">{{ . | plainify }}</span>{{ end -}} +</span>
\ No newline at end of file |
