Files @ 14abe07a4a8b
Branch filter:

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

bsturmfels
Remove unnecessary use of "safe" template tag.

This tag marks a variable as not requiring escaping by the template engine,
potentially creating cross-site scripting vulnerabilities, so shouldn't be used
unless absolutely necessary. In these cases, I don't think it's necessary.
{% extends "base_conservancy.html" %}
{% block category %}Learn{% endblock %}
{% block outercontent %}
    <div id="container">
         <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 %}