114 lines
3.7 KiB
HTML
114 lines
3.7 KiB
HTML
{% extends "puput/base.html" %}
|
|
{% load i18n wagtailcore_tags wagtailimages_tags puput_tags wagtailroutablepage_tags social_share %}
|
|
|
|
{% 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 blog_content %}
|
|
|
|
{% if self.categories.count > 0 %}
|
|
<div class="entry-categories">
|
|
{% categories_list self.categories %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h1 class="title">{{ self.title }}</h1>
|
|
|
|
<ul class="links">
|
|
<li>
|
|
{{ self.date|date:"d.m.Y" }}
|
|
</li>
|
|
{% if self.tags.count > 0 %}
|
|
<li>
|
|
<i class="fa fa-tag"></i>
|
|
{% tags_list blog_page.num_tags_entry_header self.tags %}
|
|
</li>
|
|
{% endif %}
|
|
{% if blog_page.display_comments %}
|
|
<li>
|
|
<i class="fa fa-comments"></i>
|
|
{{ self.num_comments }}
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
<p class="excerpt">
|
|
{{ self.excerpt|safe }}
|
|
</p>
|
|
|
|
{% if self.header_image %}
|
|
<div class="image">
|
|
{% image self.header_image fill-940x400 class="img-responsive" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<article class="box page-content"
|
|
{% if self.id %}data-entry-page-update-comments-url="{% url 'entry_page_update_comments' self.id %}{% endif %}">
|
|
<section>
|
|
{{ self.body|richtext}}
|
|
</section>
|
|
<div class="row">
|
|
<div class="col-md-2">
|
|
<a href="{% pageurl blog_page %}" class="blog_btn back hidden">
|
|
<i class="fa fa-home"></i>
|
|
</a>
|
|
{% entry_url self blog_page as post_url %}
|
|
</div>
|
|
<ul class="social-share-all text-right col-md-10">
|
|
<li class="social-item">
|
|
{% post_to_facebook post_url '<span><i class="fa fa-facebook"></i></span>' %}
|
|
</li>
|
|
<li class="social-item">
|
|
{% post_to_twitter self.title post_url '<span><i class="fa fa-twitter"></i></span>' %}
|
|
</li>
|
|
<li class="social-item">
|
|
{% post_to_linkendin post_url '<span><i class="fa fa-linkedin"></i></span>' %}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% show_comments %}
|
|
</article>
|
|
{% endblock blog_content %}
|
|
|
|
{% block extra_content %}
|
|
{% if self.has_related %}
|
|
{% include 'puput/related_entries.html' with entry=self %}
|
|
{% endif %}
|
|
{% endblock extra_content %}
|