summaryrefslogtreecommitdiff
path: root/djangoproject/templates/diversity/base.html
blob: a61f4eba53540f82b2b9b31b11637f79df260317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends "base_community.html" %}
{% load i18n %}

{% block og_title %}{% translate "Django Community Diversity Statement" %}{% endblock %}
{% block og_description %}{% translate "We welcome you." %}{% endblock %}

{% block header %}
  <p>{% translate "Community Diversity Statement" %}</p>
{% endblock %}

{% block content-related %}
  <div role="complementary">
    <h2 id="aside-header">{% translate "Django Community Diversity Statement" %}</h2>

    <ul class="list-links">
      <li><a href="{% url 'diversity' %}">{% translate "Diversity Statement" %}</a></li>
      <li><a href="{% url 'diversity_changes' %}">{% translate "Changes" %}</a></li>
    </ul>

    <h3>{% translate "License" %}</h3>
    <p>
      {% blocktranslate trimmed %}
        All content on this page is licensed under a
        <a href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
          Attribution </a> license.
      {% endblocktranslate %}
    </p>
    <p>
      <a href="https://creativecommons.org/licenses/by/3.0/">
        <img src="https://i.creativecommons.org/l/by/3.0/88x31.png" height="31" width="88" alt="CC-by">
      </a>
    </p>
  </div>
{% endblock %}

{% block title %}{% translate "Django Community Diversity Statement" %}{% endblock %}