summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/br.html2
-rw-r--r--layouts/shortcodes/html-tag.html4
2 files changed, 0 insertions, 6 deletions
diff --git a/layouts/shortcodes/br.html b/layouts/shortcodes/br.html
deleted file mode 100644
index 4e84243..0000000
--- a/layouts/shortcodes/br.html
+++ /dev/null
@@ -1,2 +0,0 @@
-<!-- br HTML tag -->
-<br>
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 }}