{#- vim: set et ts=8 sts=4 sw=4 ai: -#}
{% extends "layout.html" %}
{% block js %}
{{ super() }}
{% endblock js %}
{% block menu %}
{% if "home" in config.SIDEBAR_SHORTCUTS.lower().split() %}
{% endif %}
{% if has_permission('READ') and "pageindex" in config.SIDEBAR_SHORTCUTS.lower().split() %}
Home
{% endif %}
{% if has_permission('READ') and "changelog" in config.SIDEBAR_SHORTCUTS.lower().split() %}
A - Z
{% endif %}
{% if has_permission('WRITE') and "createpage" in config.SIDEBAR_SHORTCUTS.lower().split() %}
Changelog
{% endif %}
{%- if config.SIDEBAR_SHORTCUTS.split()|length > 0 %}
Create page
{%- endif %}