NDOJ/templates/blog/content.html

55 lines
2.1 KiB
HTML
Raw Normal View History

2024-04-13 22:02:54 +00:00
{% for post in posts %}
<section class="{% if post.sticky %}sticky {% endif %}blog-box">
2024-04-23 20:36:51 +00:00
{% if post.is_organization_private and show_organization_private_icon %}
<div style="margin-bottom: 1em; display: flex;">
{% for org in post.organizations.all() %}
{% include "organization/tag.html" %}
{% endfor %}
</div>
{% endif %}
<div style="margin-bottom: 0.5em">
2024-04-13 03:26:17 +00:00
<span class="post-content-header time">
2024-04-13 22:02:54 +00:00
{% with authors=post.get_authors() %}
{%- if authors -%}
2024-04-12 06:51:57 +00:00
<span class="user-img" style="width: 1.5em; height: 1.5em">
<img src="{{gravatar(authors[0])}}" loading="lazy">
2024-04-12 06:51:57 +00:00
</span>
<span class="post-authors">{{ link_users(authors) }}</span>
{%- endif -%}
{% endwith %}
&#8226;
2024-02-03 04:23:05 +00:00
{{ relative_time(post.publish_on) }}
{%- if post.sticky %} &#8226;
<i title="Sticky" class="fa fa-star fa-fw"></i>{% endif -%}
2023-02-05 13:13:12 +00:00
</span>
<span style="float: right">
<a href="{{ url('blog_post', post.id, post.slug) }}#comments" class="blog-comment-count-link">
<i class="fa fa-comments blog-comment-icon"></i>
<span class="blog-comment-count">
2024-04-13 22:02:54 +00:00
{{ comment_count(post) }}
</span>
</a>
</span>
</div>
<h2 class="title">
<a href="{{ url('blog_post', post.id, post.slug) }}">{{ post.title }}</a>
</h2>
<div class="blog-description">
<div class="summary content-description">
2024-05-29 05:14:42 +00:00
{% cache 86400 'post_content' post.id %}
{{ post.content|markdown(lazy_load=True)|reference|str|safe }}
{% endcache %}
</div>
<div class="show-more"> {{_("...More")}} </div>
</div>
<div class="actionbar-box">
{% set pagevote = post.get_or_create_pagevote() %}
{% set bookmark = post.get_or_create_bookmark() %}
{% set hide_actionbar_comment = True %}
{% set include_hr = False %}
{% set share_url = request.build_absolute_uri(post.get_absolute_url()) %}
{% include "actionbar/list.html" %}
2022-03-21 21:09:16 +00:00
</div>
</section>
{% endfor %}
{% include "feed/has_next.html" %}