Files @ 531062dde599
Branch filter:

Location: website/www/conservancy/templates/frontpage.html

brett
privacy-policy: Update.
{% extends "base_conservancy.html" %}
{% load date_within %}

{% block head %}
<link rel="alternate" type="application/rss+xml" title="Software Freedom Conservancy Complete Feed" href="/feeds/omnibus/" />
<link rel="alternate" type="application/rss+xml" title="Software Freedom Conservancy News" href="/feeds/news/" />
<link rel="alternate" type="application/rss+xml" title="Software Freedom Conservancy Blogs" href="/feeds/blog/" />
{% endblock %}

{% block content %}

<div class="singleColumn">

<h1>Software Freedom Conservancy</h1>

<p>Software Freedom Conservancy is a not-for-profit charity that
  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 &mdash; writing and improving FLOSS for the
  general public &mdash; while Conservancy takes care of the projects' needs that
  do not relate directly to software development and documentation.</p>
</div>

<div class="columns">

<div class="column">
<h2><a href="/feeds/news/" class="feedlink"><img src="/img/feed-icon-14x14.png" alt="[RSS]"/></a> <a href="/news/">Recent News</a></h2>
{% for pressr in press_releases|slice:":5" %}
  {% if forloop.first or pressr.pub_date|date_within_past_days:90 %}
    {% if not forloop.first %}<hr class="clear">{% endif %}
    {% include "news/pressrelease_partial.html" with pressr=pressr show="summary" only %}
  {% endif %}
{% endfor %}

<p><span class="continued"><a href="/news/">Conservancy News Archive&hellip;</a></span></p>
</div>

<div class="column">
<h2><a href="/feeds/blog/" class="feedlink"><img src="/img/feed-icon-14x14.png" alt="[RSS]"/></a> <a href="/blog/">Conservancy Blog</a></h2>
{% for entry in blog|slice:":5" %}
  {% if forloop.first or entry.pub_date|date_within_past_days:45 %}
    {% if not forloop.first %}<hr class="clear">{% endif %}
    {% include "blog/entry_partial.html" with entry=entry show="summary" only %}
  {% endif %}
{% endfor %}

<p><span class="continued"><a href="/blog/">Conservancy Blog Archive&hellip;</a></span></p>
</div>

<div class="column">
<h2>Follow Conservancy</h2>

<ul>
  <li class="column"><a href="https://mastodon.technology/@conservancy">Mastodon</a></li>
  <li class="column"><a href="https://twitter.com/conservancy">Twitter</a></li>
  <li class="column"><a href="https://identi.ca/conservancy">pump.io</a></li>
  <li class="column"><a href="https://plus.google.com/104268783278405704634/">Google+</a></li>
  <li class="column"><a href="https://www.facebook.com/SoftwareFreedomConservancy/">Facebook</a></li>
  <li class="column"><a href="https://www.youtube.com/channel/UCUEeuNvX2UyTTyTYXR9dm_A">YouTube</a></li>
  <li class="column"><a href="/feeds/omnibus/">Full RSS feed</a></li>
  <li class="column"><a href="https://lists.sfconservancy.org/pipermail/announce/">News mailing list</a></li>
</ul>
</div>

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

<h2>Learn More about Conservancy</h2>
<p>
<span class="continued"><a href="/about/">An Overview of Conservancy&hellip;</a></span>
<span class="continued"><a href="/members/current/">Conservancy's current member projects&hellip;</a></span>
<span class="continued"><a href="/members/services/">Services Conservancy provides to its member projects&hellip;</a></span>
<span class="continued"><a href="/copyleft-compliance/">Conservancy's unique work  defending and upholding  copyleft licenses (e.g., the GPL) &hellip;</a></span>
<span class="continued"><a href="/npoacct/">Conservancy's Non-Profit Accounting Project &hellip;</a></span>
</p>
</div>

</div>
{% endblock %}