forked from rc/aircox
61 lines
2.1 KiB
HTML
61 lines
2.1 KiB
HTML
{% extends "aircox_cms/sections/section_item.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% load wagtailsettings_tags %}
|
|
|
|
{% block content %}
|
|
<div class="meta">
|
|
<div class="author">
|
|
{% if page.publish_as %}
|
|
{% with item=page.publish_as item_date_format='' %}
|
|
{% include "aircox_cms/snippets/list_item.html" %}
|
|
{% endwith %}
|
|
{% elif page.owner %}
|
|
{% trans "Published by" %}
|
|
{{ page.owner }}
|
|
{% endif %}
|
|
</div>
|
|
{% with page_date=page.specific.date %}
|
|
{% if page_date %}
|
|
<time datetime="{{ page_date }}">
|
|
<b>{% trans "Published on " %}</b>
|
|
{{ page_date|date:'l d F, H:i' }}
|
|
</time>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% with list_page=settings.cms.WebsiteSettings.list_page %}
|
|
{% if list_page and page.tags.count %}
|
|
<div class="tags"><b>{% trans "Tags" %}</b>
|
|
{% for tag in page.tags.all %}
|
|
<a href="{{ list_page }}?tag={{ tag }}">{{ tag }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<div class="share">
|
|
<img src="{% static "aircox_cms/images/share.png" %}" alt="{% trans "Share" %}"
|
|
class="small_icon">
|
|
<a href="mailto:?&body={{ page.full_url|urlencode }}"
|
|
target="new">
|
|
<img src="{% static "aircox_cms/images/mail.png" %}" alt="Mail" class="small_icon">
|
|
</a>
|
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.full_url|urlencode }}"
|
|
target="new">
|
|
<img src="{% static "aircox_cms/images/facebook.png" %}" alt="Facebook" class="small_icon">
|
|
</a>
|
|
<a href="https://twitter.com/intent/tweet?text={{ page.full_url|urlencode }}"
|
|
target="new">
|
|
<img src="{% static "aircox_cms/images/twitter.png" %}" alt="Twitter" class="small_icon">
|
|
</a>
|
|
<a href="https://plus.google.com/share?url={{ page.full_url|urlencode }}"
|
|
target="new">
|
|
<img src="{% static "aircox_cms/images/gplus.png" %}" alt="Google Plus" class="small_icon">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|