-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (107 loc) · 4.64 KB
/
index.html
File metadata and controls
121 lines (107 loc) · 4.64 KB
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
---
layout: default
title: Globus Labs
---
<!--
START of Carousel
-->
{% assign carouselItems = site.carousel | sort: 'order' %}
<div id="homeCarousel" class="carousel slide" data-bs-ride="carousel">
<!-- Creates the slide indicators at the bottom of the carousel. -->
<div class="carousel-indicators">
{% for item in carouselItems %}
{% assign loopIndex = forloop.index %}
{% if loopIndex == 1 %}
<button type="button" data-bs-target="#homeCarousel"
data-bs-slide-to="{{ loopIndex | minus: 1 }}" class="active" aria-current="true"
aria-label="Slide {{ loopIndex }}"></button>
{% else %}
<button type="button" data-bs-target="#homeCarousel"
data-bs-slide-to="{{ loopIndex | minus: 1 }}" aria-label="Slide {{ loopIndex }}"></button>
{% endif %}
{% endfor %}
</div>
<!--
This initializes the carousel slides (which are provided as Markdown files in `_carousel` directory).
-->
<div class="carousel-inner">
{% assign firstItem = true %}
{% for item in carouselItems %}
{% if firstItem == true %}
<div class="carousel-parent carousel-item text-center active">
{% else %}
<div class="carousel-parent carousel-item text-center">
{% endif %}
<div class="carousel-bg" style="background-image: url('/images/carousel/{{ item.image }}');"></div>
<div class="carousel-content">
<img src="/images/carousel/{{ item.image }}" class="img-fluid carousel-img">
<div class="carousel-caption d-md-block">
<h5 class="carousel-text">{{ item.title }}</h5>
<p class="carousel-text">{{ item.caption }}</p>
</div>
</div>
</div>
{% assign firstItem = false %}
{% endfor %}
</div>
<!--
Next/Previous slide buttons.
-->
<button class="carousel-control-prev" type="button" data-bs-target="#homeCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#homeCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--
END of Carousel
-->
<div class="row mt-3">
<div class="col">
<p class="lh-base">Globus Labs is a research group led by Prof. Ian Foster and Dr. Kyle Chard that spans the
<a href="https://www.cs.uchicago.edu/">Department of Computer Science</a> at the University
of Chicago and the <a href="https://www.anl.gov/dsl">Data Science and Learning Division</a>
at Argonne National Laboratory. Our modest goal is to realize a world in which <strong>all
research data are reliably, rapidly, and securely accessible, discoverable, and usable</strong>.
To this end, we work on a broad range of research problems in data-intensive computing and research
data management. Our work is made possible by much-appreciated support from the National Science
Foundation, National Institutes of Health, Department of Energy, National Institute of Standards
and Technology, and other sources, and in addition to computer science, engages fields as diverse
as materials science, biology, archaeology, climate policy, and social sciences. We work closely
with the team developing the <a href="https://www.globus.org">Globus research data management platform</a>,
who often challenge us to think bigger—and sometimes implement our less crazy ideas.
</p>
</div>
</div>
<hr>
<h4 class="text-uppercase">Featured Projects</h4>
<div class="row row-cols-1 row-cols-md-2 row-cols-xl-3">
{% for project in site.projects %}
{% if project.featured %}
<a href="{{ project.url }}" class="text-reset text-decoration-none">
<div class="card project-card">
<div class="card-body">
<img class="img-responsive" src="images/projects/{{ project.image }}"
style="max-height: 100px;">
<p class="mt-2 link">
<span class="name">{{ project.title }}</span> <br>
{{ project.teaser }}
</p>
</div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
<hr>
<h4 class="text-uppercase">Recent Blog Posts</h4>
<div class="row news">
{% for blog in site.blog limit:4 %}
<div class="col-xs-3">
<a href="{{ site.baseurl }}{{ blog.url }}" class="read-more">{{ blog.title }}</a>
</div>
{% endfor %}
</div>