36 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% 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 — writing and improving FLOSS for the
 | |
|   general public — 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…</a></span>
 | |
| <span class="continued"><a href="/members/">Conservancy's member projects…</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 %}
 | 
