mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-16 04:07:12 +00:00
23 lines
671 B
HTML
23 lines
671 B
HTML
<!DOCTYPE html>
|
|
<!-- expopage.html - this text visible because this template has been included -->
|
|
{% 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 "editexpopage" path %}">Edit</a>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if not has_menu %}
|
|
{% include "menu.html" %}
|
|
{% else %}
|
|
{% if editable %}
|
|
<li><a href="{% url "editexpopage" path %}" class="editlink"><strong>Edit this Page</strong></a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|