forked from JLESC/jlesc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (100 loc) · 4.23 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
---
layout: landingpage
---
<div class="row">
<div class="col-lg-12 col-xl-4">
<h3>JLESC</h3>
<p>
The purpose of the <strong>Joint Laboratory for Extreme Scale Computing (JLESC)</strong> is to
be an international, virtual organization whose goal is to enhance the ability of member
organizations and investigators to make the bridge between Petascale and Extreme computing.
The founding partners of the JLESC are {% institute_short inria %} and
{% institute_short uiuc %}.
Further members are {% institute_short anl %}, {% institute_short bsc %},
{% institute_short jsc %} and {% institute_short riken %}-AICS.
</p>
<p>
JLESC involves computer scientists, engineers and scientists from other disciplines as well as
from industry, to ensure that the research facilitated by the Laboratory addresses science and
engineering's most critical needs and takes advantage of the continuing evolution of computing
technologies.
</p>
</div>
<div class="col-lg-6 col-xl-4">
<div id="recent-news" class="card">
<div class="card-header">News</div>
{% assign num_posts = site.posts | size %}
{% if num_posts == 0 %}
<div class="card-block">
<p class="card-text">
Sadly, no news yet.
</p>
</div>
{% else %}
<ul class="list-group list-group-flush">
{% for post in site.posts limit: 5 %}
<li class="list-group-item">
<div class="row">
<label class="tag tag-default col-xs-12 col-sm-3 col-md-4">{{ post.date | date_to_string }}</label>
<a class="col-xs-12 col-sm-9 col-md-8" href="{{ site.baseurl }}{{ post.url }}">{{ post.title | titlecase }}</a>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
<div class="card-footer card-footer-slim text-muted text-xs-center small">
<a class="col-xs-4" href="{{ site.baseurl }}/news/">All</a>
<a class="col-xs-4" href="{{ site.baseurl }}/news/archive/">Archive</a>
<a class="col-xs-4" href="{{ site.baseurl }}/feed.xml" title="subscribe via RSS">
<i class="fa fa-rss"></i>
<span class="hidden-sm-down">RSS</span>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-4">
<div class="card">
<div class="card-header">Upcoming Events</div>
{% assign num_events = site.events_upcoming | size %}
{% if num_events == 0 %}
<div class="card-block">
<p class="card-text">
No events planned.
</p>
</div>
{% else %}
<ul id="next-events-index" class="list-group list-group-flush">
{% assign j = 0 %}
{% for event in site.events_upcoming %}
{% if event.page_type == 'event_page' %}
<li class="list-group-item">
<div class="row">
<div class="col-xs-12">
<label class="tag tag-event-{{ event.kind }} pull-right">{% event_kind {{ event.kind }} %}</label>
<a href="{{ site.baseurl }}{{ event.url }}">{{ event.title | titlecase }}</a>
</div>
</div>
<div class="row small">
{% assign on_global_index = true %}
{% include event/meta.html %}
</div>
</li>
{% assign j = j | plus: 1 %}
{% endif %}
{% if j == 3 %}
{% break %}
{% endif %}
{% endfor %}
</ul>
{% endif %}
<div class="card-footer card-footer-slim text-muted text-xs-center small">
<a href="{{ site.baseurl }}/events/">All Events</a>
</div>
</div>
<br>
<font color="red"><h3>Help wanted:</h3></font>
<p>
This website needs your input and help! Update your data in the <a href="about/people">list of people</a>, write a short description of the <a href="software">software</a> you are using, or help us <a href="https://github.com/JLESC/jlesc.github.io/wiki/Maintainer%27s-Workflow">maintaining</a> the website. Check out the <a href="https://github.com/JLESC/jlesc.github.io/wiki/">Wiki</a> or contact your executive director for more information!
</p>
</div>
</div>