From b2c80f1b2729a0ee0b65351f2fd4410b3352af5b Mon Sep 17 00:00:00 2001 From: Daniel Pono Takamori Date: Mon, 18 Oct 2021 16:37:58 -0700 Subject: [PATCH] add initial press page, glossary and edit menus --- .../static/copyleft-compliance/glossary.html | 4 ++ www/conservancy/static/press/index.html | 22 ++++++++++ .../templates/base_compliance.html | 1 + .../templates/base_conservancy.html | 4 +- www/conservancy/templates/base_press.html | 40 +++++++++++++++++++ 5 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 www/conservancy/static/press/index.html create mode 100644 www/conservancy/templates/base_press.html diff --git a/www/conservancy/static/copyleft-compliance/glossary.html b/www/conservancy/static/copyleft-compliance/glossary.html index e18fb3f0..756a94a9 100644 --- a/www/conservancy/static/copyleft-compliance/glossary.html +++ b/www/conservancy/static/copyleft-compliance/glossary.html @@ -5,6 +5,10 @@

Glossary of terms

+

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

+

auditability

Ability to inspect the exact software running on a device. This includes version information, modifications and licensing information.

diff --git a/www/conservancy/static/press/index.html b/www/conservancy/static/press/index.html new file mode 100644 index 00000000..6c4d87dc --- /dev/null +++ b/www/conservancy/static/press/index.html @@ -0,0 +1,22 @@ +{% extends "base_press.html" %} +{% block subtitle %}Press - {% endblock %} +{% block submenuselection %}Press{% endblock %} +{% block content %} +

Press Information

+ +

"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."

+ +

Donate to Support This Work

+ +

Finally, Conservancy welcomes in support of our GPL Compliance Projects, + and we encourage you to become a an official + Supporter of Software Freedom Conservancy.

+ +{% endblock %} diff --git a/www/conservancy/templates/base_compliance.html b/www/conservancy/templates/base_compliance.html index ec130fbf..1987b6d6 100644 --- a/www/conservancy/templates/base_compliance.html +++ b/www/conservancy/templates/base_compliance.html @@ -29,6 +29,7 @@

Our Copyleft {% block category %}Compliance{% endblock %} Projects

@@ -102,13 +101,14 @@
  • News Releases
  • Blog
  • In The News
  • -
  • Press Kit
  • +
  • Press
  • About
  • diff --git a/www/conservancy/templates/base_press.html b/www/conservancy/templates/base_press.html new file mode 100644 index 00000000..621cf911 --- /dev/null +++ b/www/conservancy/templates/base_press.html @@ -0,0 +1,40 @@ +{% extends "base_conservancy.html" %} +{% load cache %} +{% load humanize %} +{% block head %} + + + +{% endblock %} + +{% block outercontent %} + +
    +
    + +
    {% block content %}{% endblock %} +
    +
    +{% endblock %}