diff --git a/www/conservancy/static/activities/index.html b/www/conservancy/static/activities/index.html new file mode 100644 index 0000000000000000000000000000000000000000..c9173fc1e8c5cfc0556a1447c6f9178ac995090d --- /dev/null +++ b/www/conservancy/static/activities/index.html @@ -0,0 +1,69 @@ +{% extends "base_conservancy.html" %} +{% load cache %} +{% load humanize %} +{% block head %} + + + +{% endblock %} + +{% block outercontent %} +
+
+ +
+ {% block content %} +

Software Freedom Conservancy is a nonprofit organization + centered around ethical technology. Our mission is to ensure the + right to repair, improve and reinstall software. We promote and + defend these rights through fostering free and open source + software (FOSS) projects, driving initiatives that actively make + technology more inclusive, and advancing policy strategies that + defend FOSS (such as copyleft).

+ +

Our work on copyleft + compliance, including enforcement of the General Public + License (GPL), is world-renowned. We believe fundamentally that + copyleft licenses are the best tool available today to empower + users and consumers to take control of their electronic devices, + liberate themselves from planned obsolesce, and join a free market + where they choose who provides their software.

+ +

We also believe that FOSS functions best when built by a + egalitarian community in which hobbyists, volunteers, and + individuals stand on equal footing with companies and large + organizations. Vendor neutrality is simply not enough — as + that merely makes companies equal to each other and leaves + hobbyists and volunteers out in the cold. To foster FOSS creation + in this manner, we are the non-profit home to + dozens of member projects and initiatives whom we assist to + remain transparent and prioritize the public good in their + development of FOSS.

+ +

Furthermore, diversity and inclusion is a critical component to + egalitarian FOSS communities. We acknowledge that FOSS + communities historically have struggled on these fronts and the + myth of “pure meritocracy” so popular in FOSS circles + willfully ignores the systemic biases in our societies and + cultures. We are thus the proud home of + the Outreachy initiative that + offers paid internships in FOSS for contributors who have faced + systemic bias in their efforts to join the FOSS community.

+ + + {% endblock %} +

+
+ {% endblock %} diff --git a/www/conservancy/templates/base_conservancy.html b/www/conservancy/templates/base_conservancy.html index 4fec6732f26567f6dcbc9eead329304427cdc2ab..742d584fe8bab75946f0e01831dc3fafc3351d41 100644 --- a/www/conservancy/templates/base_conservancy.html +++ b/www/conservancy/templates/base_conservancy.html @@ -69,7 +69,7 @@
  • Home
  • -
  • What we do +
  • What we do {% include 'submenus/what_we_do_partial.html' %}
  • Who we are diff --git a/www/conservancy/urls.py b/www/conservancy/urls.py index 6dc7431b7b1130bfd8e505a82b1adda0bbee1cc9..304027fb56a766d420b27b3fb36f213dfa3abcb7 100644 --- a/www/conservancy/urls.py +++ b/www/conservancy/urls.py @@ -43,6 +43,7 @@ urlpatterns = [ url(r'^error/(40[134]|500)(?:/index\.html|/|)$', static_views.handler), url(r'^error', static_views.index), url(r'^about', static_views.index), + url(r'^activities', static_views.index), url(r'^donate', static_views.index), url(r'^copyleft-compliance', static_views.index, {'fundraiser_sought' : 'vmware-match-0'}),