Bradley M. Kuhn
a80c95fd13
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.
50 lines
2.3 KiB
HTML
50 lines
2.3 KiB
HTML
{% extends "base_conservancy.html" %}
|
|
{% load cache %}
|
|
{% load humanize %}
|
|
{% block category %}WhatWeDo{% endblock %}
|
|
{% 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="VizioTopBar {% block submenuselection %}{% endblock %}">
|
|
<h2>What We Do</h2>
|
|
{% include 'submenus/what_we_do_partial.html' %}
|
|
<h2>Vizio Lawsuit</h2>
|
|
<ul>
|
|
<li class="VizioMain"><a href="/copyleft-compliance/vizio.html">About the Lawsuit</a></li>
|
|
<li class="VizioMain"><a href="/copyleft-compliance/vizio.html">Press Release</a></li>
|
|
<li class="VizioComplaint"><a href="/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf">Complaint</a></li>
|
|
<li class="VizioQandA"><a href="/press/qanda.html">Q&A</a></li>
|
|
<li class="VizioPress"><a href="/press/vizio-coverage.html">Third-Party Press Coverage</a></li>
|
|
</ul>
|
|
<h2>Resources for Journalists</h2>
|
|
<ul>
|
|
<li class="VizioPressKit"><a href="/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf">Press Kit</a></li>
|
|
<li class="VizioPhotoAssets"><a href="/docs/software-freedom-conservancy-v-vizio-photo-assets.zip">Photo Assets</a></li>
|
|
<li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
|
|
</ul>
|
|
<h2><ul><li class="ComplianceMain"><a href="/copyleft-compliance/index.html">More About Copyleft Compliance</a></li></ul></h2>
|
|
</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 & 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 %}
|