summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/get-involved/mailing-lists/all-lists.html')
-rw-r--r--python/templates/pages/get-involved/mailing-lists/all-lists.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/python/templates/pages/get-involved/mailing-lists/all-lists.html b/python/templates/pages/get-involved/mailing-lists/all-lists.html
new file mode 100644
index 0000000..836972e
--- /dev/null
+++ b/python/templates/pages/get-involved/mailing-lists/all-lists.html
@@ -0,0 +1,76 @@
+---
+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>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>
+{% include container/end %} \ No newline at end of file