Fix escaped quotes in titles (#3086)

This commit is contained in:
Alexander Petros 2024-12-20 00:37:26 -05:00 committed by GitHub
parent 69857dfdbb
commit eab4f77af2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ time { padding-right: 10px; }
{% for page in section.pages %}
<li>
<time datetime={{page.date}}>{{ page.date | date(format="%b %d, %Y") }}</time>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
<a href="{{ page.permalink | safe }}">{{ page.title | safe }}</a>
</li>
{% endfor %}
</ol>