mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
fixed unescaped characters bug
This commit is contained in:
parent
c679e0b497
commit
3e6a84ec5d
1 changed files with 2 additions and 2 deletions
|
@ -3,5 +3,5 @@
|
||||||
<img alt="{{ .Title }}" src="{{ .Params.image }}" />
|
<img alt="{{ .Title }}" src="{{ .Params.image }}" />
|
||||||
{{ end}}
|
{{ end}}
|
||||||
<h2 class="title-summary"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title-summary"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||||||
<p>{{ .Content | plainify | truncate 140 }}</p>
|
<p>{{ htmlUnescape .Content | plainify | truncate 140 }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue