-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjoin.html
More file actions
38 lines (30 loc) · 1012 Bytes
/
join.html
File metadata and controls
38 lines (30 loc) · 1012 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
31
32
33
34
35
36
37
38
---
layout: default
title: Joining the Group
permalink: /join/
---
{% assign join = site.data.join %}
<section class="page-header container">
<h1>{{ join.hero.title }}</h1>
<p>{{ join.hero.intro }}</p>
</section>
<section class="page-header container">
<h1>{{ join.positions_section_title }}</h1>
</section>
<section class="join-simple container">
<div class="publications-list join-position-list">
{% for position in join.positions %}
<article class="pub-card">
<div class="pub-card-content">
<h3 class="pub-title">{{ position.title }}</h3>
<p class="pub-authors">{{ position.description }}</p>
</div>
</article>
{% endfor %}
</div>
</section>
<section class="page-header container">
<h1>{{ join.connect.title }}</h1>
{% capture join_email_link %}<a class="join-email-link" href="mailto:{{ join.connect.email }}">{{ join.connect.email }}</a>{% endcapture %}
<p>{{ join.connect.body | replace: join.connect.email, join_email_link }}</p>
</section>