20 lines
830 B
HTML
20 lines
830 B
HTML
{% extends "usethesource/base.html" %}
|
|
|
|
{% block content %}
|
|
{{ block.super }}
|
|
|
|
<section class="f4 pa2 mt4 mb3">
|
|
<p>The Complete and Corresponding Source (CCS) is all of the technical materials and source code required to modify, run, and/or reinstall the software. The GPL and LGPL have a formal definitions for CCS, which is sometimes called "Corresponding Source.</p>
|
|
</section>
|
|
|
|
<section class="mb5">
|
|
<h2 class="f2 lh-title ttu mt0">Candidates</h2>
|
|
{% for candidate in candidates %}
|
|
<div class="mb4">
|
|
<h3 class="f4 lh-title mt0"><a href="{% url 'usethesource:candidate' slug=candidate.slug %}">{{ candidate.name }}</a></h3>
|
|
<p><em>Released {{ candidate.release_date }}</em></p>
|
|
<p>{{ candidate.description }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock content %}
|