2015-09-08 04:23:32 +00:00
{% load i18n thumbnail %}
2015-09-26 19:04:48 +00:00
< article id = "post-{{ post.slug }}" class = "post-item col-lg-12 text-center" >
{% if image and post.main_image %}
< div class = "blog-visual" >
{% thumbnail post.main_image post.full_image_options.size crop=post.full_image_options.crop upscale=post.full_image_options.upscale subject_location=post.main_image.subject_location as thumb %}
< img src = "{{ post.main_image.url }}" alt = "{{ post.main_image.default_alt_text }}" class = "img-responsive img-border img-full" / >
< / div >
{% endif %}
< header >
{% block blog_meta %}
{# include "glarus_blog/includes/blog_meta.html" #}
{% endblock %}
< h2 >
< a href = "{% url 'digitalglarus:blog-detail' post.slug %}" >
{{ post.title }}
< / a >
< br >
< small >
{{ post.date_created }}
< / small >
< / h2 >
< / header >
< div class = "blog-lead text-center" >
< p >
{{ post.abstract| safe }}
< / p >
< / div >
< footer class = "read-more" >
< a class = "lead" href = "{% url 'digitalglarus:blog-detail' post.slug %}" > {% trans "read more" %} » < / a >
< / footer >
2015-09-26 19:31:36 +00:00
< hr > < / hr >
2015-09-26 19:04:48 +00:00
< / article >