forked from iris-hep/iris-hep.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (184 loc) · 6.5 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
---
permalink: /index.html
layout: main
title: Institute for Research and Innovation in Software
bgimage: assets/images/Tprime-200pu-PhaseII-black-arctic-main-image.jpg
---
<div class="mainpage-all">
<div class="mainpage-main mainpage-container">
<div class="mainpage-intro mainpage-core">
<h4>Computational and data science research to enable discoveries in fundamental physics</h4>
{% capture irishead %}
IRIS-HEP is a software institute funded by the National Science Foundation. It is developing state-of-the-art software cyberinfrastructure required for the challenges of data intensive scientific research at the High Luminosity Large Hadron Collider (HL-LHC) at CERN, and other planned HEP experiments of the 2020's. These facilities are discovery machines which aim to understand the fundamental building blocks of nature and their interactions. [Full Overview](/about/overview.html)
{% endcapture %}
{{ irishead | markdownify }}
</div>
<div class="mainpage-news mainpage-core">
<h4>News and Featured Stories:</h4>
<div class="container-fluid">
<div class="news row">
{% for post in site.posts limit:4 %}
<div class="card news">
<a href="{{post.url}}">
<img class="card-img-top" src="{{post.image}}" {% if post.image-whole -%} style="object-fit:scale-down;" {% endif -%} alt="Card image cap">
</a>
<div class="card-body d-flex flex-column">
<div class="card-text card-title">
<a href="{{post.url}}">{{post.title}}</a>
</div>
<div class="card-text card-body">
{% if post.summary %}
{{ post.summary | markdownify }}
{% else %}
{{ post.excerpt | strip_html }}
{% endif %}
<a href="{{post.url}}">Read more</a></div>
</div>
</div>
{% endfor %}
</div>
</div>
<a href="/news.html">View all past news items</a>
</div>
<div class="mainpage-fellows mainpage-core">
<h4>IRIS-HEP Fellows</h4>
The IRIS-HEP Fellows program provides funding support for selected individuals to spend several months working closely with a mentor on
an HEP software R&D topic relevant to the Institute.
<a href="/fellows.html">Find out more about opportunities with the IRIS-HEP Fellows program.</a>
{% assign active-fellows = site.fellows | where_exp: "item", "item.active == true"
| last_name_sort: "fellow-name"
| reverse
| iris_hep_fellow_sort
| reverse %}
{%- if active-fellows.size > 0 %}
Current fellows include:
{% endif %}
<div class="container-fluid">
<div class="row">
{% for person in active-fellows %}
<div class="card" style="width: 12rem;">
<img class="card-img-top" src="{{person.photo}}" alt="Card image cap">
<div class="card-body d-flex flex-column">
<div class="card-text">
<b><a href="{{person.url}}">{{person.fellow-name}}</a></b><br>
<small>{{person.institution}}</small><br><br>
</div>
<div class="card-text mt-auto"><i>
{% include fellow_dates.html dates=person.dates %}
</i><br></div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<a href="/fellows.html#former-iris-hep-fellows">View all former Fellows</a>
</div>
<div class="mainpage-sidebar mainpage-container">
<div class="mainpage-events mainpage-core">
{% comment %}
Go through the list and produce a list of upcoming events as well as a
list of events in the past 90 days. Treat 6 days ago as "now" so that
ongoing events don't get prematurely flagged as recent.
{% endcomment %}
<div class="mainpage-sidebar-text">
<h4>Upcoming Events:</h4>
</div>
{%- include get_all_events.html -%}
{% assign selected_events = all_events | where_day_range: "startdate", 6 | where_exp: "item", "item.skipfrontpage != true" | reverse %}
<ul>
{% for event in selected_events %}
<li>
<a href="{{event.meetingurl}}">
<div class="event">
<div class="date">
{{ event.startdate | print_date_range: event.enddate }}
</div>
<div class="location">
{{event.location}}
</div>
<div class="name">
{{event.name}}
</div>
</div>
</a>
</li>
{% endfor %}
</ul>
{%- if selected_events.size == 0 %}
<div class="empty">
No events currently scheduled. Check back again soon!
</div>
{%- endif %}
<div class="mainpage-sidebar-links">
<a href="/events.html">View all past events</a>
</div>
</div>
<div class="mainpage-topical mainpage-core">
<div class="mainpage-sidebar-text">
<h4>Upcoming Topical Meetings:</h4>
</div>
{% include get_indico_list.html %}
{% assign upcoming_topical = indico_list | where_day_range: "startdate", 1 %}
<ul>
{% for event in upcoming_topical %}
<li>
<a href="{{event.meetingurl}}">
<div class="event">
<div class="date">
{{ event.startdate | print_date_range: event.enddate }}
</div>
<div class="location">
</div>
<div class="name">
{{event.name}}
</div>
</div>
</a>
</li>
{% endfor %}
</ul>
{%- if upcoming_topical.size == 0 %}
<div class="empty">
No meetings currently scheduled. Check back again soon!
</div>
{%- endif %}
<div class="mainpage-sidebar-links">
<a href="/topical.html" aria-label="View all topical meetings">View all</a>
•
<a href="https://indico.cern.ch/category/10570/" aria-label="Indico page for topical meetings">Indico</a>
<a href="https://www.youtube.com/channel/UC8Dmx4MYjp6RQ9ngc58Ujmg/videos" aria-label="Recordings of past topical meetings">(recordings)</a>
</div>
</div>
<div class="mainpage-related mainpage-core">
<div class="mainpage-sidebar-text">
<h4>Related projects:</h4>
{%- assign projlist = "" | split: "," -%}
{{ " " }}
{%- assign projs = site.data.collabcats | hash_fetch: site.data.collaborations, "id" | flat_map -%}
{%- for proj in projs -%}
{%- capture projtxt -%}
{%- if proj.short -%}
[{{ proj.short }}]({{ proj.url }})
{%- else -%}
[{{ proj.name }}]({{ proj.url }})
{%- endif -%}
{%- endcapture -%}
{%- assign projlist = projlist | push: projtxt -%}
{%- endfor -%}
<ul>
<li>
<div class="event">
<div class="projects">
{{ projlist | join: " • " | markdownify }}
</div>
</div>
</li>
</ul>
<div class="mainpage-sidebar-links">
<a href="/collaborations">Full list with details</a>
</div>
</div>
</div>
</div>
</div>