summaryrefslogtreecommitdiffstats
path: root/templates/flatpage.html
blob: ebe5b1bfcbe93819ff20d29c397852dce2db0dc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "expobase.html" %}
{% block title %}{{ title }}{% endblock %}
{% block bodyattrs %}{% if homepage %} id="homepage"{% endif %}{% endblock %}
{% block body %}
{{ body|safe }}
{% if homepage %}
  {% if editable %}
    <a href="{% url "editflatpage" path %}">Edit</a>
  {% endif %}
  {% else %}
    {% if not has_menu %}
      {% include "menu.html" %}
    {% endif %}
  {% endif %}
{% endblock %}