-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmailinglists.html
More file actions
30 lines (29 loc) · 936 Bytes
/
mailinglists.html
File metadata and controls
30 lines (29 loc) · 936 Bytes
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
---
layout: page
title: CI CoE - Mailing Lists
permalink: /mailinglists/
---
<!-- contact form start -->
<section id="contact-form">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="section-title">
<h1>Mailing Lists</h1>
</div>
<div class="material">
<ul>
{% for n in site.data.mailinglists %}
<li><b>{{ n.title }}</b><br />
<span style="color: #999">{{ n.summary }}</span>
{% if n.subscribe.size > 0 %}
<br>[<a href="{{ n.subscribe }}" target="_blank">subscribe</a>]
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</section>