aboutsummaryrefslogtreecommitdiff
blob: dc7ae4dc0c40a7e3054474968a53b21543d3bb55 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
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 &middot;
  <span class="fa fa-fw fa-plus-square"></span> Subscribe &middot;
  <span class="fa fa-fw fa-archive"></span> Archives &middot;
  <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>Architecture-specific 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.arch %}
    {% include partials/mailinglist.html %}
  {% endfor %}
  </table>
</div>

<h2>Project 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.project %}
    {% 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 %}