Skip to content

Commit

Permalink
Fix incorrect /div when using discuss (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair authored Sep 7, 2023
1 parent 9cbd54a commit ea924ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ablog/templates/ablog/postcard2.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% if post.published and post.date != post.update %}
<div class="ablog-sidebar-item ablog__postcard2">
{% if post.published and post.date != post.update %}
<li id="published">
<span>
{% if fa %}
Expand Down Expand Up @@ -161,5 +161,5 @@
{% endif %}
</a >
</li>
</div>
{% endif %}
</div>
4 changes: 2 additions & 2 deletions src/ablog/templates/postcard2.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ warning("postcard2.html is an old template path, that is no longer used by ablog. Please use ablog/postcard2.html instead.") }}
{% if post.published and post.date != post.update %}
<div class="ablog-sidebar-item ablog__postcard2">
{% if post.published and post.date != post.update %}
<li id="published">
<span>
{% if fa %}
Expand Down Expand Up @@ -162,5 +162,5 @@
{% endif %}
</a >
</li>
</div>
{% endif %}
</div>

0 comments on commit ea924ca

Please sign in to comment.