Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNelson/Roberto <dewittn@gmail.com>2020-05-10 15:57:37 +0300
committerNelson/Roberto <dewittn@gmail.com>2020-05-10 15:57:37 +0300
commit7f64552567b8fe21b6f7cc521b3636b7aa7f0be1 (patch)
tree9edaa3bc1adc8d6db8bd2b1fbb13a45783ec7d27 /layouts
parent0a55f700f995fca6cf4256ea831870a57a92797d (diff)
Implemented subheadings and subheader shortcodes.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/subheader.html4
-rw-r--r--layouts/shortcodes/subheadings.html3
2 files changed, 5 insertions, 2 deletions
diff --git a/layouts/shortcodes/subheader.html b/layouts/shortcodes/subheader.html
index 84d50f7..2300b3e 100644
--- a/layouts/shortcodes/subheader.html
+++ b/layouts/shortcodes/subheader.html
@@ -1,3 +1,3 @@
-<header>
+<div class="row-6 row-12-mobilep">
{{ .Inner | markdownify }}
-</header> \ No newline at end of file
+</div> \ No newline at end of file
diff --git a/layouts/shortcodes/subheadings.html b/layouts/shortcodes/subheadings.html
new file mode 100644
index 0000000..5322bb1
--- /dev/null
+++ b/layouts/shortcodes/subheadings.html
@@ -0,0 +1,3 @@
+<div class="row">
+ {{ .Inner }}
+</div> \ No newline at end of file