{% extends 'page.html' %} {% block subtitle %}{{ c.page.title }}{% endblock %} {% block primary %}
{% block ckanext_pages_actions %} {% if h.check_access('ckanext_pages_update') %} {% asset 'pages/main-css' %} {% link_for _('Edit'), named_route='pages.edit', page=c.page.name, class_='btn btn-primary pull-right', icon='edit' %} {% link_for _('Revisions'), named_route='pages.pages_revisions', page=c.page.name, class_='btn btn-primary pull-right me-2', icon='eye' %} {% endif %} {% endblock %}

{{ c.page.title }}

{% block ckanext_pages_content %} {% if c.page.content %}
{% set editor = h.pages_get_wysiwyg_editor() %} {% if editor %}
{{c.page.content|safe}}
{% else %} {{ h.render_content(c.page.content) }} {% endif %}
{% else %}

{{ _('This page currently has no content') }}

{% endif %} {% endblock %}
{% endblock %} {% block secondary %}{% endblock %}