Ben Sturmfels
531a97a3c9
The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
17 lines
877 B
HTML
17 lines
877 B
HTML
{% extends "base_conservancy.html" %}
|
|
{% block outercontent %}
|
|
<div id="container" class="mw8 center ph2 ph3">
|
|
<div id="mainContent">{% block content %}{% endblock %}</div>
|
|
<div id="sidebar" class="{% block submenuselection %}{% endblock %}">
|
|
<h2>What We Do</h2>
|
|
{% include 'submenus/what_we_do_partial.html' %}
|
|
<h2>{% block category %}Projects{% endblock %} & Services</h2>
|
|
<ul>
|
|
<li class="Current"><a href="/projects/current/">Current Member Projects</a></li>
|
|
<li class="Applying"><a href="/projects/apply/">Applying</a></li>
|
|
<li class="Services"><a href="/projects/services/">Member Project Services</a></li>
|
|
<li class="Policies"><a href="/projects/policies/">Member Project Policies</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|