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

github.com/runningstream/hugograyscale.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrunningstream <runningstreamllc@gmail.com>2020-01-25 20:34:14 +0300
committerrunningstream <runningstreamllc@gmail.com>2020-01-25 20:34:14 +0300
commit03467572d0fb7b9dca49eade9acbd85369954131 (patch)
tree40f71f41d671f0a967d0225cdc77d97572ffcd02
parent3e6abb500f4f8aa53dfb150977965e25fc49d5d3 (diff)
Fix raw html bug in shortcode nest w/new renderer
-rw-r--r--exampleSite/content/section3.md4
-rw-r--r--layouts/shortcodes/socialhandles.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/exampleSite/content/section3.md b/exampleSite/content/section3.md
index 6977daf..b90e4de 100644
--- a/exampleSite/content/section3.md
+++ b/exampleSite/content/section3.md
@@ -7,7 +7,7 @@ weight: 4
Feel free to leave us a comment on the [Grayscale template Github page](https://github.com/runningstream/hugograyscale/) to give some feedback about this theme!
-{{% socialhandles %}}
+{{< socialhandles >}}
{{< twitter user="stream_running" >}}
{{< github user="runningstream" >}}
-{{% /socialhandles %}}
+{{< /socialhandles >}}
diff --git a/layouts/shortcodes/socialhandles.html b/layouts/shortcodes/socialhandles.html
index df2d3a7..5542acc 100644
--- a/layouts/shortcodes/socialhandles.html
+++ b/layouts/shortcodes/socialhandles.html
@@ -1 +1 @@
-<ul class="list-inline banner-social-buttons">{{- .Inner -}}</ul>
+<ul class="list-inline banner-social-buttons">{{ .Inner }}</ul>