-
Notifications
You must be signed in to change notification settings - Fork 352
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
Showing
10 changed files
with
76 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
inspire-id: 2598292 | ||
project: | ||
- agc | ||
challenge-area: | ||
- agc |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
inspire-id: 2738557 | ||
project: | ||
- agc | ||
challenge-area: | ||
- agc |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
inspire-id: 2743013 | ||
project: | ||
- agc | ||
challenge-area: | ||
- agc |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
inspire-id: 2743608 | ||
project: | ||
- agc | ||
challenge-area: | ||
- agc |
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 |
---|---|---|
|
@@ -7,3 +7,5 @@ focus-area: | |
- doma | ||
- as | ||
project: agc | ||
challenge-area: | ||
- agc |
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
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
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,48 @@ | ||
--- | ||
permalink: /presentations/bychallenge.html | ||
layout: presentations | ||
title: Presentations by Challenge | ||
--- | ||
|
||
{% assign sorted_presentations = site.data['sorted_presentations'] %} | ||
|
||
<!-- | ||
0 1 2 3 4 5 6 7 8 | ||
date | name | title | url | meeting | meetingurl | project | challenge_area | institution | ||
--> | ||
|
||
<h2>Presentations by the IRIS-HEP team</h2> | ||
{% assign prescount = 0 %} | ||
|
||
{% assign activities = site.pages | where: "layout", "challenge-area" | where_exp: "item", "item.draft != true" | sort_natural: 'title' %} | ||
|
||
{% for challenge-area-page in activities %} | ||
{% assign challenge-area-title = challenge-area-page.title %} | ||
{% assign challenge-area-name = challenge-area-page.name | basename %} | ||
<h4>{{ challenge-area-title }}</h4> | ||
<ul> | ||
{% for talk in sorted_presentations %} | ||
{% if talk.challenge-area contains challenge-area-name %} | ||
<li> | ||
{%- include print_pres.html talk=talk -%} | ||
</li> | ||
{% assign prescount = prescount | plus: "1" %} | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} | ||
|
||
|
||
<h4>General</h4> | ||
<ul> | ||
{% for talk in sorted_presentations %} | ||
{% if talk.challenge-area == nil %} | ||
<li> | ||
{%- include print_pres.html talk=talk -%} | ||
</li> | ||
{% assign prescount = prescount | plus: "1" %} | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
|
||
Total presentations (presentations spanning multiple areas listed multiple times): {{ prescount }}. |