Files @ 1b1e2b994fc7
Branch filter:

Location: website/conservancy/usethesource/templates/usethesource/landing_page.html

bsturmfels
usethesource: Page titles, big buttons, sub-headings & edit link
{% extends "usethesource/base.html" %}

{% block title %}Use the Source - Software Freedom Conservancy{% endblock %}

{% block content %}
  {{ block.super }}

  <section class="f4 pv2 mt4 mb3">
    <div class="flex flex-wrap mb4" style="gap: 1rem">
      <a href="#candidates" class="db f3 ttu tc ph4 pv3 btn-orange mb2" style="flex-grow: 1">View the candidates</a>
      <a href="#submit-a-candidate" class="db f3 ttu tc ph4 pv3 btn-orange mb2" style="flex-grow: 1">Submit a candidate</a>
    </div>

    <p>Software Freedom Conservancy works to ensure that you have the right to repair and modify the software on your devices.  <strong>Use The Source</strong> shows you one of the key steps in this process: how we evaluate the source code candidates that companies provide to you, as is required when they use Linux or other GPLed software (most do).  Through the collaborative process shown in each candidate's comment threads, we highlight common issues in the below source candidates, and what steps need to be taken by the companies to fix them (i.e. to comply with software right to repair licenses like the GPL).  You can also see examples of candidates already in compliance, which are no longer just candidates, but real "corresponding source code".</p>
  </section>

    <h2 id="submit-a-candidate" class="f2 lh-title ttu mt0 mb2">Submit a Candidate</h2>
    <p>If you wish to let us know about a source code candidate (corresponding or not!) that you'd like us to take a look at, and possibly include in the list below, please upload the candidate to us using <a href="https://usl-upload.sfconservancy.org/s/4Ykmx7rSGMJ7s43">this form</a> and then email us at <a href="mailto:compliance@sfconservancy.org">compliance@sfconservancy.org</a> with the filename and any other information you have about the candidate.  There are many other ways you can help, regardless of whether you're a developer or not - see our <a href="https://sfconservancy.org/copyleft-compliance/help.html">Help Defend Software Freedom and Rights</a> page for details!</p>

  <section class="mb5">
    <h2 id="candidates" class="f2 lh-title ttu mt0 mb2">Source Candidates List</h2>
    {% for candidate in candidates %}
      <div class="mb3">
        <h3 class="f4 lh-title mt0"><a href="{% url 'usethesource:candidate' slug=candidate.slug %}">{{ candidate.name }}</a></h3>
        <p class="mb2"><em>Released {{ candidate.release_date }}</em></p>
        <p>{{ candidate.description }}</p>
      </div>
    {% endfor %}
</section>
{% endblock content %}