27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
|
{% extends "glarus_blog/base.html" %}
|
||
|
{% 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">
|
||
|
<header>
|
||
|
<h2>{{ post.title }}</h2>
|
||
|
{% block blog_meta %}
|
||
|
{% include "glarus_blog/includes/blog_meta.html" %}
|
||
|
{% endblock %}
|
||
|
</header>
|
||
|
{% 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 %}
|
||
|
<img src="{{ thumb.url }}" alt="{{ post.main_image.default_alt_text }}" width="{{ thumb.width }}" height="{{ thumb.height }}" />
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endspaceless %}
|
||
|
<div class="blog-content">{% render_placeholder post.content %}</div>
|
||
|
</article>
|
||
|
{% endblock content_blog %}
|