Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Added safeHTML in tagline #234

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion layouts/partials/jumbotron.html
Expand Up @@ -24,7 +24,7 @@ <h2>{{ .Page.Params.subtitle | title }}</h2>
{{ if isset .Page.Params "tagline" }}
<div class="row">
<div class="{{- .Params.jumbotron_tagline_class | default .Site.Params.jumbotron_tagline_class | default "col-sm-18 col-sm-offset-3"}}">
<p>{{ .Page.Params.tagline }}</p>
<p>{{ .Page.Params.tagline | safeHTML }}</p>
</div>
</div>
{{end}}
Expand Down