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
		
	
	
	
		
			728 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			728 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base_conservancy.html" %}
 | |
| {% block category %}Learn{% endblock %}
 | |
| {% 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>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>
 | |
| {% endblock %}
 |