2016-04-09 06:51:20 +00:00
{% extends "base.html" %}
2015-09-08 04:23:32 +00:00
{% load i18n thumbnail cms_tags %}
{% block meta_description %}{{ post.meta_description }}{% endblock meta_description %}
{% block meta_keywords %}{{ post.meta_keywords }}{% endblock meta_keywords %}
{% block canonical_url %}< link rel = "canonical" href = "{{ SITE.domain }}{{ view.get_view_url }}" / > {% endblock canonical_url %}
{% block title %}{{ post.get_title }}{% endblock %}
{% block content_blog %}{% spaceless %}
< article id = "post-{{ post.slug }}" class = "post-item post-detail" >
2015-09-26 19:08:14 +00:00
{% if post.main_image_id %}
< 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 %}
2015-09-26 22:46:30 +00:00
< img src = "{{ post.main_image.url }}" alt = "{{ post.main_image.default_alt_text }}" class = "img-responsive img-full" / >
2015-09-26 19:08:14 +00:00
< / div >
{% endif %}
< header class = "text-center" >
2015-09-26 22:03:09 +00:00
< hr > < / hr >
< h2 class = "text-center intro-text" >
2016-04-01 10:37:01 +00:00
< a href = "{% url 'digitalglarus:blog-detail' post.slug %}" class = "post-title center-block" >
2015-09-28 02:51:00 +00:00
< b > {{ post.title }}< / b >
2015-09-26 19:08:14 +00:00
< / a >
< small >
{{ post.date_created }}
< / small >
< / h2 >
2015-09-26 22:03:09 +00:00
< hr > < / hr >
2015-09-26 19:08:14 +00:00
{% block blog_meta %}
2016-04-01 10:37:01 +00:00
{# include "glarus_blog/includes/blog_meta.html" #}
2015-09-26 19:08:14 +00:00
{% endblock %}
2015-09-08 04:23:32 +00:00
< / header >
{% endspaceless %}
2015-09-26 22:03:09 +00:00
< div class = "digitalglarus-blog-content" > {% render_placeholder post.content %}< / div >
2015-09-08 04:23:32 +00:00
< / article >
2016-04-01 10:37:01 +00:00
{% endblock content_blog %}