NDOJ/templates/blog/content.html

41 lines
1.9 KiB
HTML
Raw Normal View History

2022-03-21 21:09:16 +00:00
<section class="{% if post.sticky %}sticky {% endif %}blog-box">
<div style="margin-bottom: 0.5em">
2020-12-28 05:45:58 +00:00
<span class="time">
2020-01-21 06:35:58 +00:00
{% with authors=post.authors.all() %}
2020-12-28 05:45:58 +00:00
{%- if authors -%}
2022-03-21 21:09:16 +00:00
<img src="{{gravatar(authors[0])}}" style="width: 1.5em; border-radius: 50%; margin-bottom: -0.3em">
2020-01-21 06:35:58 +00:00
<span class="post-authors">{{ link_users(authors) }}</span>
2020-12-28 05:45:58 +00:00
{%- endif -%}
2020-01-21 06:35:58 +00:00
{% endwith %}
2022-03-21 21:09:16 +00:00
&#8226; {{ relative_time(post.publish_on, abs=_('on {time}'), rel=_('{time}')) -}}
{%- if post.sticky %} &#8226; <i title="Sticky" class="fa fa-star fa-fw"></i>{% endif -%}
2020-12-28 05:45:58 +00:00
</span>
2022-03-21 21:09:16 +00:00
<span style="float: right">
2020-12-28 05:45:58 +00:00
<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">
{{- post_comment_counts[post.id] or 0 -}}
</span>
</a>
</span>
2022-03-21 21:09:16 +00:00
</div>
<h2 class="title">
<a href="{{ url('blog_post', post.id, post.slug) }}">{{ post.title }}</a>
</h2>
2020-12-28 05:45:58 +00:00
{% if post.is_organization_private and show_organization_private_icon %}
<div class="organization-tags">
{% for org in post.organizations.all() %}
<span class="organization-tag">
<a href="{{ org.get_absolute_url() }}">
<i class="fa fa-lock"></i> {{ org.name }}
</a>
</span>
{% endfor %}
</div>
2020-01-21 06:35:58 +00:00
{% endif %}
2022-03-21 21:09:16 +00:00
<div class="summary content-description blog-description">
2020-12-28 05:45:58 +00:00
{% cache 86400 'post_summary' post.id %}
{{ post.summary|default(post.content, true)|markdown('blog', 'svg', lazy_load=True)|reference|str|safe }}
{% endcache %}
</div>
</section>