{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags static %} {% block extra_css %} {% endblock %} {% block content %}
{% if breadcrumbs %} {% endif %}
{% if article_category %}{{ article_category.title }}{% endif %}
{% if page.cover_image %} {% image page.cover_image original as cover %} {{ page.title }} {% endif %}

{{ page.title }}

{{ page.date|date:"Y/m/d" }}

{{ page.intro }}
{{ page.body }}
{% with share_url=request.build_absolute_uri|urlencode share_text=page.title|urlencode %}
{% endwith %} {% with tags=page.tags.all %} {% if tags %}
{% endif %} {% endwith %} {% if related_articles %}
{% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}