symposion_app/symposion/templates/cms/page_detail.html
Luke Hatcher b06daba446 Merge branch 'master' into cms-features
* master:
  added BSD license
  Update master
  use django-forms-bootstrap
  fixed account links on homepage
  fixed staticfiles settings
  removed homepage use of ifsetting_tag
  updated urls
  updated templates
  updated imports to reflect new layout
  updated imports to reflect new layout
  updated settings
  updated manage.py
  updated requirements to 1.4 / DUA and latest versions
  updated project layout for 1.4 (without content changes)

Conflicts:
	requirements/base.txt
	symposion/settings.py
	symposion_project/urls.py
2012-07-10 15:35:30 -04:00

19 lines
No EOL
506 B
HTML

{% extends "subnav_base.html" %}
{% block subnav %}
<ul class="nav nav-list">
<li class="nav-header">{{ page.parent }}</li>
{% for sibling in siblings %}
{% if sibling == page %}
<li>{{ sibling }}</li>
{% else %}
<li><a href="{% url cms_page sibling.path %}">{{ sibling }}</a>
{% endif %}
{% endfor %}
</ul>
{% endblock %}
{% block body %}
<h1>{{ page.title }}</h1>
{{ page.body }}
{% endblock %}