add initial press page, glossary and edit menus
This commit is contained in:
parent
f240980c85
commit
b2c80f1b27
5 changed files with 69 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
|||
|
||||
<h1 id="glossary">Glossary of terms</h1>
|
||||
|
||||
<p>Here are a list of terms you might be unfamiliar with but occur frequently
|
||||
in our work. If you have any suggestions on things we can add here, please
|
||||
reach out to info@sfconservancy.org</p>
|
||||
|
||||
<h3 id="auditability">auditability</h3>
|
||||
<p>Ability to inspect the exact software running on a device. This includes version information, modifications and licensing information. </p>
|
||||
|
||||
|
|
22
www/conservancy/static/press/index.html
Normal file
22
www/conservancy/static/press/index.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
{% extends "base_press.html" %}
|
||||
{% block subtitle %}Press - {% endblock %}
|
||||
{% block submenuselection %}Press{% endblock %}
|
||||
{% block content %}
|
||||
<h1 id="PressInformation">Press Information</h1>
|
||||
|
||||
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
|
||||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
|
||||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
|
||||
non proident, sunt in culpa qui officia deserunt mollit anim id est
|
||||
laborum."</p>
|
||||
|
||||
<h2 id="support">Donate to Support This Work</h2>
|
||||
|
||||
<p>Finally, Conservancy welcomes <a href="#donate-box"
|
||||
class="donate-now">donations</a> in support of our GPL Compliance Projects,
|
||||
and we encourage you to become a <a href="/sustainer/">an official
|
||||
Supporter of Software Freedom Conservancy</a>. </p>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -29,6 +29,7 @@
|
|||
<h2>Our Copyleft {% block category %}Compliance{% endblock %} Projects</h2>
|
||||
<ul>
|
||||
<li class="AboutCompliance"><a href="/copyleft-compliance/about.html">About</a></li>
|
||||
<li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
|
||||
<li class="EnforcementStrategy"><a href="/copyleft-compliance/enforcement-strategy.html">Strategic GPL Enforcement Initiative</a></li>
|
||||
<li class="CopyleftPrinciples"><a href="/copyleft-compliance/principles.html">Principles of Community-Oriented GPL Enforcement</a></li>
|
||||
<li class="LiberateFirmware"><a href="/copyleft-compliance/firmware-liberation.html">Liberate IoT Firmware via GPL Enforcement</a></li>
|
||||
|
|
|
@ -75,7 +75,6 @@
|
|||
<li><a href="/projects/">Member Projects</a></li>
|
||||
<li><a href="/copyleft-compliance/">Copyleft Compliance</a></li>
|
||||
<li><a href="#fixme">Special</a></li>
|
||||
<li><a href="/about/filings/">Public Filings</a></li>
|
||||
<li><a href="#fixme">FAQs</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -102,13 +101,14 @@
|
|||
<li><a href="/news/">News Releases</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="#fixme">In The News</a></li>
|
||||
<li><a href="#fixme">Press Kit</a></li>
|
||||
<li><a href="/press/">Press</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="about"><a href="/about/">About</a>
|
||||
<ul>
|
||||
<li><a href="#fixme">Who we are</a></li>
|
||||
<li><a href="#fixme">Transparency</a></li>
|
||||
<li><a href="/about/filings/">Public Filings</a></li>
|
||||
<li><a href="/about/contact/">Contact</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
|
40
www/conservancy/templates/base_press.html
Normal file
40
www/conservancy/templates/base_press.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
{% 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="donate-sidebar">
|
||||
<table style="background-color:#afe478;width:100%;">
|
||||
<tr><td style="text-align:center;padding:10px;padding-bottom:10px;">
|
||||
<div id="donate-box" class="toggle-unit"><h1 class="toggle-content">Support
|
||||
Now!</h1></div>
|
||||
|
||||
<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>
|
||||
</td></tr></table>
|
||||
</div>
|
||||
<div class="content-with-donate-sidebar">
|
||||
<div id="container">
|
||||
<div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
|
||||
<h2>Resources for Journalists</h2>
|
||||
<ul>
|
||||
<li class="Vizio"><a href="#fixme">Vizio</a></li>
|
||||
<li class="News"><a href="/news/">News</a></li>
|
||||
<li class="PressKit"><a href="/presskit/">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></div>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue