Files @ b723e6390acd
Branch filter:

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

Bradley M. Kuhn
Format like previous with the <p> solution

<ul> is the right HTML way to format these, but they are all too
close. Get it to look more like it did with <p>'s with CSS.
{% 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 %}