Files @ 88ef25012f00
Branch filter:

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

bkuhn
Moved some overview text over to frontpage; fixed typo in overview;
s/.../…/
{% extends "base_conservancy.html" %}
{% load date_within %}

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

{% block content %}

<h1>The Software Freedom Conservancy</h1>

<p>The Software Freedom Conservancy is a not-for-profit organization 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.</p>

<p>
<span class="continued"><a href="/overview/">More about Conservancy&hellip;</a></span>
<span class="continued"><a href="/members/">Conservancy's member projects&hellip;</a></span>
</p>

{% if press_releases.0.pub_date|date_within_past_days:30 %}
<div class="shaded">
<h2><a href="/feeds/news/" class="feedlink"><img src="/img/feed-icon-14x14.png" alt="[RSS]"/></a> <a href="/news/">Latest News</a></h2>
<p class="date">{{ press_releases.0.pub_date|date:"F j, Y" }}</p>
<h3><a href="{{ press_releases.0.get_absolute_url }}">{{ press_releases.0.headline|safe }}</a></h3>
{{ press_releases.0.summary|safe }}
{% if press_releases.0.body %}<p><span class="continued"><a href="{{ press_releases.0.get_absolute_url }}">Read More...</a></span></p>{% endif %}
<p><a href="/news/">News Archive...</a></p>
</div>
{% endif %}

{% endblock %}