{% extends '_base.html' %} {% load static %} {% block PAGE_TITLE %}{{ post.s_title|striptags }} | Хроники гипноза HypnoSVG{% endblock %} {% block META_TITLE %}{{ post.s_title|striptags }} — HypnoSVG{% endblock %} {% block META_DESCRIPTION %}{% if post.s_teaser %}{{ post.s_teaser|striptags|truncatechars:160 }}{% else %}Статья из хроник гипноза HypnoSVG: {{ post.s_title|striptags }}{% endif %}{% endblock %} {% block OG_TITLE %}{{ post.s_title|striptags }} | HypnoSVG{% endblock %} {% block OG_DESCRIPTION %}{% if post.s_teaser %}{{ post.s_teaser|striptags|truncatechars:200 }}{% else %}Статья из хроник гипноза HypnoSVG: {{ post.s_title|striptags }}{% endif %}{% endblock %} {% block OG_IMAGE %}{% if post.f_cover_img %}{{ request.scheme }}://{{ request.get_host }}{{ post.f_cover_img.url }}{% elif post.k_item and post.k_item.file_svg %}{{ request.scheme }}://{{ request.get_host }}{{ post.k_item.file_svg.url }}{% else %}{% static 'img/og-hypn0-default.png' %}{% endif %}{% endblock %} {% block CANONICAL %}{{ request.scheme }}://{{ request.get_host }}{{ post.get_absolute_url }}{% endblock %} {% block EXTRA_LD_JSON %}, { "@type": "Article", "headline": "{{ post.s_title|striptags|escapejs }}", "description": "{{ post.s_teaser|striptags|escapejs }}", "datePublished": "{{ post.d_published_at|date:'c' }}", "dateModified": "{{ post.d_updated_at|date:'c' }}", "mainEntityOfPage": { "@type": "WebPage", "@id": "{{ request.scheme }}://{{ request.get_host }}{{ post.get_absolute_url }}" } } {% endblock EXTRA_LD_JSON %} {% block CONTENT %}
{% if series_parent %}
Материал входит в серию: {{ series_parent.s_title|safe }}
Глава {{ post.i_order }}
{% endif %}
Хроники гипноза {% if post.k_item %} Аддитивная картина: {{ post.k_item.s_title }} {% endif %}
{% if post.f_cover_img %}{# ЕСТЬ ТИЗЕР-КАРТИНКА И ПОКАЗЫВАЕМ ЕË #}
{{ post.s_title|striptags }}
{% else %}{# НЕТ ТИЗЕР-КАРТИНКИ И ПОКАЗЫВАЕМ ЗАГЛУШКУ #}
Гипножаба{# <-- СЮДА ДЕФОЛТНУЮ КАРТИНКУ #} Тут ничего не нарисовано{# <-- А ПОСЛЕ ЭТО УБРАТЬ #}
{% endif %}

{{ post.s_title|safe }}

{% if post.s_teaser %}
{{ post.s_teaser|safe }}
{% endif %}
{% if post.k_item %} {% endif %}
{{ post.s_content|safe }}
{% if series_posts and not series_parent %}

Материалы и главы этого цикла

{% for child in series_posts %}
Глава {{ child.i_order }}

{{ child.s_title|safe }}

{% if child.s_teaser %}

{{ child.s_teaser|striptags }}

{% endif %}
{% endfor %}
{% endif %}
{% endblock CONTENT %}