28 lines
811 B
HTML
28 lines
811 B
HTML
{% set post = __SELF__.post %}
|
|
|
|
<div class="content">{{ post.content_html|raw }}</div>
|
|
|
|
{% if post.featured_images|length %}
|
|
<div class="featured-images text-center">
|
|
{% for image in post.featured_images %}
|
|
<p>
|
|
<img
|
|
data-src="{{ image.filename }}"
|
|
src="{{ image.path }}"
|
|
alt="{{ image.description }}"
|
|
style="max-width: 100%" />
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<p class="info">
|
|
Posted
|
|
{% if post.categories|length %} in
|
|
{% for category in post.categories %}
|
|
<a href="{{ category.url }}">{{ category.name }}</a>{% if not loop.last %}, {% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
on {{ post.published_at|date('M d, Y') }}
|
|
</p>
|