Files @ 46c50ec0b192
Branch filter:

Location: website/www/conservancy/templates/blog/entry_archive_day.html

Bradley M. Kuhn
Copyleft Compliance: Minor rewrite of strategy & firmware liberation

This rewrite should improve the stand-alone nature of these documents
and allow for better integration with other summary text and
announcements on the website.

Note that they have now drifted heavily from the original formulation
of the items as grant proposals.
{% extends "base_blog.html" %}

{% block subtitle %}Conservancy Blog Archive: {{ day|date:"F j, Y" }} - {% endblock %}

{% block content %}

<h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2>

{% for entry in object_list %}
  {% include "blog/entry_partial.html" with entry=entry show="summary+tags" only %}
{% endfor %}

{% endblock %}