Browse Source

Fix heading size on bookmarked comments page

merge-requests/72/head
Deimos 6 years ago
parent
commit
2451747358
  1. 2
      tildes/tildes/templates/bookmarks.jinja2

2
tildes/tildes/templates/bookmarks.jinja2

@ -28,7 +28,7 @@
{% if post is topic %} {% if post is topic %}
{{ render_topic_for_listing(post, show_group=True) }} {{ render_topic_for_listing(post, show_group=True) }}
{% elif post is comment %} {% elif post is comment %}
<h2>Comment on <a href="{{ post.topic.permalink }}">{{ post.topic.title }}</a> in {{ group_linked(post.topic.group.path) }}</h2>
<h2 class="heading-post-listing">Comment on <a href="{{ post.topic.permalink }}">{{ post.topic.title }}</a> in {{ group_linked(post.topic.group.path) }}</h2>
{{ render_single_comment(post) }} {{ render_single_comment(post) }}
{% endif %} {% endif %}
</li> </li>

Loading…
Cancel
Save