NDOJ/templates/comments/feed.html

19 lines
597 B
HTML
Raw Normal View History

2023-01-27 23:11:10 +00:00
<div class="blog-box">
<h3 class="problem-feed-name">
<a href="{{ comment.link }}#comment-{{ comment.id }}">
{{ page_titles[comment.page] }}
</a>
</h3>
{% with author=comment.author %}
{% if author %}
<div class="problem-feed-info-entry">
<i class="fa fa-pencil-square-o fa-fw"></i>
<span class="pi-value">{{ link_user(author) }}</span>
</div>
{% endif %}
{% endwith %}
<div class='blog-description content-description'>
{{ comment.body|markdown(lazy_load=True)|reference|str|safe }}
2023-02-06 16:25:50 +00:00
<div class="show-more"></div>
2023-01-27 23:11:10 +00:00
</div>
2022-03-21 21:09:16 +00:00
</div>