summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/html-tag.html
diff options
context:
space:
mode:
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 }}