blob: f2905876c435b9c8b1836ac3f6ea1bec0301137d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% block content %}
<div class="box">
<h2 class="title">Arch Linux Core Developers</h2>
{% with developers as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
<h2 class="title">Arch Linux Trusted Users</h2>
{% with tus as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
</div>
<br /><br />
{% endblock %}
|