45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
{% extends embed|yesno:"aircox_cms/base_content.html,aircox_cms/base_site.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load thumbnail %}
|
|
|
|
{% block content %}
|
|
<div class="post_list {{ classes }}">
|
|
{% for post in object_list %}
|
|
<a class="post_item"
|
|
href="{{ post.detail_url }}">
|
|
{% if 'date' in view.fields or 'time' in list.fields %}
|
|
<time datetime="{{ post.date }}" class="post_datetime">
|
|
{% if 'date' in view.fields %}
|
|
<span class="post_date">
|
|
{{ post.date|date:'D. d F' }},
|
|
</span>
|
|
{% endif %}
|
|
{% if 'time' in view.fields %}
|
|
<span class="post_time">
|
|
{{ post.date|date:'H:i' }},
|
|
</span>
|
|
{% endif %}
|
|
</time>
|
|
{% endif %}
|
|
|
|
{% if 'image' in view.fields %}
|
|
<img src="{% thumbnail post.image "64x64" crop %}" class="post_image">
|
|
{% endif %}
|
|
|
|
{% if 'title' in view.fields %}
|
|
<h4 class="post_title">{{ post.title }}</h4>
|
|
{% endif %}
|
|
|
|
{% if 'content' in view.fields %}
|
|
<div class="post_content">
|
|
{{ post.content|safe|striptags|truncatechars:"64" }}
|
|
</div>
|
|
{% endif %}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|