-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18399f6
commit b6917e2
Showing
3 changed files
with
119 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
title: About us | ||
label: Organisers | ||
description: Information on !!conference.longname!! organisers. | ||
|
||
splash_title: Organisers of !!conference.shortname!! | ||
|
||
lastmod: page | ||
|
||
menu: | ||
main: | ||
title: Organisers | ||
identifier: organisers | ||
weight: 11 | ||
--- | ||
|
||
<p> | ||
The organisation of the {{ site.conference.shortname }} is supported by many teams of colleagues. We are grateful to everyone for their dedicated work. Below you can find information about these teams: | ||
</p> | ||
|
||
<ul> | ||
{% for item in site.menus.organisers %} | ||
<li> | ||
<a class="" href="{{ item.url | absolute_url }}" title="{{ item.alt | escape | replace: "!!conference.year!!", site.conference.year | replace: "!!conference.location!!", site.conference.location | replace: "!!conference.dates!!", site.conference.dates }}"> | ||
{{ item.title }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: Organising Committee | ||
label: Organising Committee | ||
description: The Organising Committee for !!conference.shortname!!. | ||
lastmod: | ||
type: data | ||
file: oc.yml | ||
|
||
menus: | ||
organisers: | ||
title: Organising Committee | ||
alt: Volunteers leading the organisation and running of the !!conference.longname!! | ||
weight: 2 | ||
--- | ||
|
||
{% assign num_roles_chairs = site.data.oc | size %} | ||
{% assign half_num_roles_chairs = num_roles_chairs | plus: 1 | divided_by: 2%} | ||
|
||
<div class="row"> | ||
<div class="col-md-6 col-12 mblast-0"> | ||
{% for chairs in site.data.oc offset:0 limit:half_num_roles_chairs %}{% for role in chairs %} | ||
|
||
<h2 class="h4">{{ role[1].label }} <a href="{{ role.email }}" title="Retrieve the email address for {{ site.conference.shortname }} {{ role[1].label }}"><span alt="An envelope icon" class="d-inline-block icon-email ml-1"></span></a></h2> | ||
<ul class="list-unstyled"> | ||
{% for people in role[1]['people'] %} | ||
<li class="pb-1">{{ people.name }}<br><span class="text-muted small">{{ people.institution }}<!--, {{ people.country }}--></span></li> | ||
{% endfor %} | ||
</ul> | ||
{% endfor %}{% endfor %} | ||
</div> | ||
<div class="col-md-6 col-12 mblast-0"> | ||
{% for chairs in site.data.oc offset:half_num_roles_chairs %}{% for role in chairs %} | ||
<h2 class="h4">{{ role[1].label }} <a href="{{ role[1].email }}" title="Retrieve the email address for {{ site.conference.year }} {{ role[1].label }}"><span alt="An envelope icon" class="d-inline-block icon-email ml-1"></span></a></h2> | ||
<ul class="list-unstyled"> | ||
{% for people in role[1]['people'] %} | ||
<li class="pb-1">{{ people.name }}<br><span class="text-muted small">{{ people.institution }}<!--, {{ people.country }}--></span></li> | ||
{% endfor %} | ||
</ul> | ||
{% endfor %}{% endfor %} | ||
</div> | ||
</div> | ||
|
||
{% unless forloop.last %} | ||
<hr> | ||
{% endunless %} |