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

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Raasch <jan@janraasch.com>2020-09-07 18:46:18 +0300
committerJan Raasch <jan@janraasch.com>2020-09-07 18:46:18 +0300
commit9a7774bc4b67a52ce7e29f41263ae47f982425cf (patch)
tree4025a20aaf14be79024ad29a3661ee60fefd1f81
parentf483bbaea465e1f450b3811c8f7aefa22f0f430b (diff)
refactor: remove extra p-tags from section.post-content
fixes https://github.com/janraasch/hugo-scroll/issues/7
-rw-r--r--layouts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 676b727..0202ae3 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -27,7 +27,7 @@
<h2 class="post-title">{{ .Title }}</h2>
</header>
<section class="post-content">
- <p>{{ .Content }}</p>
+ {{ .Content }}
</section>
</article>
<div class='post-after'></div>