blob: 0ac55f427e8d2c9d08e1d0db3d1ee93a107ba42b (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
nav1: get-involved
nav2: ml
nav3: ml-all-lists
nav3-show: true
nav3-weight: 20
layout: page-nav3
title: 'All mailing lists'
---
<p class="lead">
The Gentoo free software project has a number of public mailing lists, covering a variety of Gentoo-related subjects.
</p>
<p>
This page lists all mailing lists offered by our project and tells you who the moderators are.
</p>
<div class="well well-sm">
<strong>Legend:</strong>
<span class="fa fa-fw fa-send"></span> Send message ·
<span class="fa fa-fw fa-plus-square"></span> Subscribe ·
<span class="fa fa-fw fa-archive"></span> Archives ·
<span class="label label-warning" ><span class="fa fa-fw fa-lock"></span></span> Moderated list
</div>
{% include container/start %}
<hr>
<h2>Primary mailing lists</h2>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>List name</th>
<th>Description</th>
<th class="ml-actions hidden-xs">Actions</th>
</tr>
{% for list in site.data.mailinglists.primary %}
{% include partials/mailinglist.html %}
{% endfor %}
</table>
</div>
<h2>International mailing lists</h2>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>List name</th>
<th>Description</th>
<th class="ml-actions hidden-xs">Actions</th>
</tr>
{% for list in site.data.mailinglists.international %}
{% include partials/mailinglist.html %}
{% endfor %}
</table>
</div>
<h2>Other mailing lists</h2>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>List name</th>
<th>Description</th>
<th class="ml-actions hidden-xs">Actions</th>
</tr>
{% for list in site.data.mailinglists.other %}
{% include partials/mailinglist.html %}
{% endfor %}
</table>
</div>
<h2>Archived mailing lists</h2>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>List name</th>
<th>Description</th>
<th class="ml-actions hidden-xs">Actions</th>
</tr>
{% for list in site.data.mailinglists.archived %}
{% include partials/mailinglist.html archived=true %}
{% endfor %}
</table>
</div>
{% include container/end %}
|