-
Notifications
You must be signed in to change notification settings - Fork 0
/
_contact.html
24 lines (21 loc) · 931 Bytes
/
_contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: Contact us
description: Contact details for !!conference.shortname!!.
menu:
main:
title: Contact
weight: 15
---
{%- for chairs in site.data.oc -%}{%- for role in chairs -%}
{% if role[1]['contact'] -%}
<p>
If you need any help or have questions regarding the conference, please do not hesitate to get in touch with the <a href="{{ role[1].email }}" title="Send an email to the {{ site.conference.shortname }} {{ role[1].label }}">{{ site.conference.shortname }} {{ role[1].label }}</a>,
{% assign use_and = role[1]['people'] | size | plus: -1 -%}
{%- for person in role[1]['people'] -%}
{{- person.name -}}
{%- if forloop.index == use_and %}, and {% else -%}{%- unless forloop.last %}, {% endunless -%}{%- endif -%}
{%- endfor -%}.
</p>
{%- break -%}
{%- endif -%}
{%- endfor -%}{%- endfor -%}