Files @ a80c95fd136e
Branch filter:

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

Bradley M. Kuhn
Fix minimal start of ourcoverage.html and correct various problems

ourcoverage.html was a reasonable minimal start but not really ready
for production. Make changes necessary to put this into production,
as follows:

* Rename ourcoverage.html to vizio-coverage.html. This is just
Vizio coverage for now.

* Order articles by most in-depth/interesting. Verified this
ordering by consensus with Conservancy staff.

* mailto: link for press coverage on the main inthenews page, but
don't use that on Vizio page; it's unlikely we'll miss any of the
Vizio coverage.

* use — instead of -

* put quotes around article titles.

* Add missing PR Web article

* Switch from <p>'s to <li>'s in vizio-coverage.html

* Fix menu issues. 09a4b02 outlined the issues regarding how to
add items to menu; it does require a CSS change as explained
therein; merely using the right `base_` is not enough

* Improve menu integration. Per PR people's recommendation, the
Vizio stuff that also goes in other areas needs to be placed in
multiple menus.
{% extends "base_conservancy.html" %}
{% load cache %}
{% load humanize %}
{% block head %}
<link href="/jquery-ui.css" rel="stylesheet" type="text/css"/>
<link href="/forms.css" rel="stylesheet" type="text/css"/>

{% endblock %}

{% block outercontent %}
<div class="content-with-donate-sidebar">
    <div id="container">
         <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
            <h2>What We Do</h2>
            {% include 'submenus/what_we_do_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="OurCoverage"><a href="/press/ourcoverage.html">Our Coverage</a></li>
            <li class="InTheNews"><a href="/press/inthenews.html">Our Issues In The News</a></li>
            <li class="VizioPress"><a href="/press/vizio-coverage.html">Our Vizio Lawsuit In The News</a></li>
            <li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
            </ul>
         </div>
               <div id="mainContent">{% block content %}{% endblock %}
               </div>

    </div>
<div class="donate-sidebar">
  <details>
    <summary>Support Now!</summary>

    <h3>Support Copyleft Enforcement Now!</h3>

    <p>
      To support our copyleft compliance &amp; enforcement work,
      please <a href="/sustainer/#annual"><span class="donate-box-highlight">become a Conservancy
      Sustainer <strong>right now</strong></span></a>.  We can't sustain
      this work without ongoing support from donors like you!</p>
  </details>
    </div>
</div>
{% endblock %}