53 lines
2.4 KiB
HTML
53 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
|
{% load wagtailcore_tags wagtailimages_tags puput_tags %}
|
|
|
|
{% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %}
|
|
|
|
{% block title %}{{ self.title }} | {{ blog_page.title }}{% endblock title %}
|
|
{% block meta_title %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %}{% endblock meta_title %}
|
|
{% block meta_description %}{% if self.search_description %}{{ self.search_description }}{% else %}{{ self.body|striptags|truncatewords:20 }}{% endif %}{% endblock meta_description %}
|
|
{% block canonical %}{% canonical_url entry=self %}{% endblock canonical %}
|
|
{% block social_share %}
|
|
{% image self.header_image fill-800x450 as share_image %}
|
|
<meta property="og:title" content="{{ self.title }}" />
|
|
<meta property="og:description" content="{% if self.excerpt %}{{ self.excerpt|striptags }}{% else %}{{ self.body|striptags|truncatewords:20 }}{% endif %}" />
|
|
<meta property="og:url" content="{% canonical_url entry=self %}" />
|
|
{% if self.header_image %}
|
|
<meta property="og:image" content="{% image_url share_image.url %}" />
|
|
<meta property="og:image:width" content="800" />
|
|
<meta property="og:image:height" content="450" />
|
|
<meta name="twitter:image" content="{% image_url share_image.url %}" />
|
|
{% endif %}
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="{{ self.title }}" />
|
|
<meta name="twitter:description" content="{% if self.excerpt %}{{ self.excerpt|striptags }}{% else %}{{ self.body|striptags|truncatewords:20 }}{% endif %}" />
|
|
{% endblock social_share %}
|
|
|
|
{% block content %}
|
|
<section id="news-details">
|
|
<article class="container"
|
|
{%if self.id %}data-entry-page-update-comments-url="{% url 'entry_page_update_comments' self.id %}{% endif %}">
|
|
|
|
{% if self.header_image %}
|
|
<div class="image">
|
|
{% image self.header_image fill-940x300 as header_image %}
|
|
<img alt="{{ self.header_image.title }}" src="{{ header_image.url }}" class="img-responsive">
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include 'puput/entry_page_header.html' with entry=self %}
|
|
|
|
<div class="article-body" role="main">
|
|
{{ self.body|richtext}}
|
|
</div>
|
|
|
|
{% show_comments %}
|
|
</article>
|
|
</section>
|
|
{% endblock content %}
|
|
|
|
{% block extra_content %}
|
|
{% if self.has_related %}
|
|
{% include 'puput/related_entries.html' with entry=self %}
|
|
{% endif %}
|
|
{% endblock extra_content %}
|