2010-09-26 21:20:05 +00:00
{% extends "base_conservancy.html" %}
{% load date_within %}
{% block head %}
2010-10-04 16:17:16 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy Complete Feed" href = "/feeds/omnibus/" / >
2010-09-26 21:20:05 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy News" href = "/feeds/news/" / >
2010-10-04 16:15:53 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy Blogs" href = "/feeds/blog/" / >
2010-09-26 21:20:05 +00:00
{% endblock %}
{% block content %}
2010-10-04 14:54:09 +00:00
< div class = "singleColumn" >
2012-10-05 19:43:02 +00:00
< h1 > Software Freedom Conservancy< / h1 >
2010-09-26 21:20:05 +00:00
2015-12-18 20:01:30 +00:00
< p > Software Freedom Conservancy is a not-for-profit charity that
2010-10-04 01:50:16 +00:00
helps promote, improve, develop, and defend Free, Libre, and Open Source
Software (FLOSS) projects. Conservancy provides a non-profit home and
infrastructure for FLOSS projects. This allows FLOSS developers to
focus on what they do best — writing and improving FLOSS for the
general public — while Conservancy takes care of the projects' needs that
2010-11-10 15:11:05 +00:00
do not relate directly to software development and documentation.< / p >
2010-10-04 14:54:09 +00:00
< / div >
2010-09-26 21:20:05 +00:00
2010-10-04 14:54:09 +00:00
< div class = "columns" >
2016-11-17 15:40:22 +00:00
< div class = "column" >
2010-10-04 14:54:09 +00:00
< h2 > < a href = "/feeds/news/" class = "feedlink" > < img src = "/img/feed-icon-14x14.png" alt = "[RSS]" / > < / a > < a href = "/news/" > Recent News< / a > < / h2 >
2016-12-31 04:09:01 +00:00
{% for pressr in press_releases|slice:":5" %}
{% if forloop.first or pressr.pub_date|date_within_past_days:30 %}
{% if not forloop.first %}< hr class = "clear" > {% endif %}
{% include "news/pressrelease_partial.html" with pressr=pressr show="summary" only %}
{% endif %}
{% endfor %}
2013-02-21 21:46:40 +00:00
< p > < span class = "continued" > < a href = "/news/" > Conservancy News Archive… < / a > < / span > < / p >
2016-11-17 15:40:22 +00:00
< / div >
< div class = "column" >
2014-07-15 22:27:24 +00:00
< h2 > < a href = "/feeds/blog/" class = "feedlink" > < img src = "/img/feed-icon-14x14.png" alt = "[RSS]" / > < / a > < a href = "/blog/" > Conservancy Blog< / a > < / h2 >
2016-12-30 23:06:20 +00:00
{% for entry in blog|slice:":5" %}
{% if forloop.first or entry.pub_date|date_within_past_days:30 %}
2016-12-31 03:13:50 +00:00
{% if not forloop.first %}< hr class = "clear" > {% endif %}
2016-12-30 23:06:20 +00:00
{% include "blog/entry_partial.html" with entry=entry show="summary" only %}
{% endif %}
{% endfor %}
2015-12-18 20:06:57 +00:00
2016-11-17 15:40:22 +00:00
< p > < span class = "continued" > < a href = "/blog/" > Conservancy Blog Archive… < / a > < / span > < / p >
< / div >
2015-12-18 20:06:57 +00:00
2016-11-17 15:40:22 +00:00
< div class = "column" >
< h2 > Support Conservancy< / h2 >
< p > As a 501(c)(3) non-profit charity, Conservancy relies on
charitable donations for its operations.
Please join {{supporters_count|safe}} others and < a href = "/supporter/" > < strong > become a Conservancy Supporter
today< / strong > < / a > and/or < a href = "/donate/" > donate generously< / a > to help our work!
< / p >
2010-10-04 14:54:09 +00:00
< / div >
2016-11-17 15:40:22 +00:00
< div class = "column" >
2017-11-22 17:38:59 +00:00
< h2 > Follow Conservancy< / h2 >
< ul >
< li > < p > < a href = "https://mastodon.technology/@conservancy" > Mastodon< / a > < / p > < / li >
< li > < p > < a href = "https://twitter.com/conservancy" > Twitter< / a > < / p > < / li >
< li > < p > < a href = "https://identi.ca/conservancy" > pump.io< / a > < / p > < / li >
< li > < p > < a href = "https://plus.google.com/104268783278405704634/" > Google+< / a > < / p > < / li >
< li > < p > < a href = "https://www.facebook.com/SoftwareFreedomConservancy/" > Facebook< / a > < / p > < / li >
< li > < p > < a href = "https://www.youtube.com/channel/UCUEeuNvX2UyTTyTYXR9dm_A" > YouTube< / a > < / p > < / li >
< li > < p > < a href = "/feeds/omnibus/" > Full RSS feed< / a > < / p > < / li >
< li > < p > < a href = "https://lists.sfconservancy.org/pipermail/announce/" > News mailing list< / a > < / p > < / li >
< / ul >
2016-11-17 15:40:22 +00:00
< h2 > Learn More about Conservancy< / h2 >
< p >
< span class = "continued" > < a href = "/about/" > An Overview of Conservancy… < / a > < / span >
< span class = "continued" > < a href = "/members/current/" > Conservancy's current member projects… < / a > < / span >
< span class = "continued" > < a href = "/members/services/" > Services Conservancy provides to its member projects… < / a > < / span >
< span class = "continued" > < a href = "/copyleft-compliance/" > Conservancy's unique work defending and upholding copyleft licenses (e.g., the GPL) … < / a > < / span >
< span class = "continued" > < a href = "/npoacct/" > Conservancy's Non-Profit Accounting Project … < / a > < / span >
< / p >
2010-10-04 14:54:09 +00:00
< / div >
2016-11-17 15:40:22 +00:00
2010-10-04 14:54:09 +00:00
< / div >
2010-09-26 21:20:05 +00:00
{% endblock %}