summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/html-tag.html
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-05-11 01:02:51 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-05-11 01:02:51 +0200
commit69fff3b9dd4357140748adf52a76820a8a592fb8 (patch)
treefea0d0ab03adfff9ab83d176801916598de779b7 /layouts/shortcodes/html-tag.html
parent966de8742183621bd81c5137410755dbed1a547a (diff)
downloadgohugo-theme-ed-69fff3b9dd4357140748adf52a76820a8a592fb8.tar.gz
Remove no longer used shortcodes
Diffstat (limited to 'layouts/shortcodes/html-tag.html')
-rw-r--r--layouts/shortcodes/html-tag.html4
1 files changed, 0 insertions, 4 deletions
diff --git a/layouts/shortcodes/html-tag.html b/layouts/shortcodes/html-tag.html
deleted file mode 100644
index 15a7814..0000000
--- a/layouts/shortcodes/html-tag.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{ $optBlock := dict "display" "block" }}
-{{ print "<" | safeHTML }}{{ .Get "tag" | default "div" }}{{ with .Get "id" }} id="{{ . }}"{{ end }}{{ with .Get "class" }} class="{{ . }}"{{ end }}{{ with .Get "style" }} style="{{ . | safeCSS }}"{{ end }}{{ print ">" | safeHTML }}
-{{ with .Inner }}{{ . | $.Page.RenderString $optBlock }}{{ end }}
-{{ print "</" | safeHTML }}{{ .Get "tag" | default "div" }}{{ print ">" | safeHTML }}