Files @ b723e6390acd
Branch filter:

Location: website/www/conservancy/templates/base_learn.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 %}Learn{% endblock %}
{% block outercontent %}
    <div id="container">
         <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
            <h2>Learn</h2>
            {% include 'submenus/learn_partial.html' %}
            <h2>Resources for Journalists</h2>
            <ul>
            <li class="News"><a href="/news/">News</a></li>
            <li class="PressKit"><a href="/press/">Press Kit</a></li>
            <li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
            </ul>
   </div>
               <div id="mainContent">{% block content %}{% endblock %}
               </div>
</div>
{% endblock %}