Skip to content

Commit

Permalink
Fix escaped quotes in titles
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpetros committed Dec 20, 2024
1 parent 69857df commit c729303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/themes/htmx-theme/templates/essay_all.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>htmx Essays</h2>
{% 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>
Expand Down

0 comments on commit c729303

Please sign in to comment.