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

github.com/puresyntax71/hugo-theme-chunky-poster.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEarl Ng <ng.earl@gmail.com>2020-09-24 06:56:49 +0300
committerGitHub <noreply@github.com>2020-09-24 06:56:49 +0300
commitb24df7f71ba56d1a64c59293a6332bfa49dd21a7 (patch)
treed216843eea03f6833217542b4a31ff987835ed5d
parent4c873e910392acae5e4b9c218a1e33dc0a9950ff (diff)
Update card.html
removing "plainify" because it causes the quotes symbols (i.e ", ") to be displayed as the HTML entity name ldquo or ldquo
-rw-r--r--layouts/_default/card.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/card.html b/layouts/_default/card.html
index 191e15b..45151df 100644
--- a/layouts/_default/card.html
+++ b/layouts/_default/card.html
@@ -14,7 +14,7 @@
<h4 class="card-title">{{ $page.Title }}</h4>
<p class="card-text text-muted text-uppercase">{{ $page.Date.Format "January 2, 2006" }}</p>
<div class="card-text">
- {{ $page.Summary | plainify }}
+ {{ $page.Summary }}
</div>
</div>
</a>