Files @ 123eb7603cee
Branch filter:

Location: website/www/conservancy/templates/base_about.html

Bradley M. Kuhn
Use typical way of putting the category in a block.

Django is so frustrating as it's never clear about how things trickle
up and down through templates, so move the category to the top like
the others.
{% extends "base_conservancy.html" %}
{% block category %}WhoWeAre{% endblock %}
{% block outercontent %}
    <div id="container">
         <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
            <h2>Who We Are</h2>
            {% include 'submenus/who_we_are_partial.html' %}
         </div>
               <div id="mainContent">{% block content %}{% endblock %}
               </div>
   </div>
{% endblock %}