-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
46 lines (39 loc) · 1.46 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
---
title: Welcome to OHSU Computation!
layout: splash
classes: wide
header:
overlay_color: "#333"
overlay_filter: "0.20"
overlay_image:
excerpt: "Unifying Computational Groups at OHSU"
intro:
- title: "About Us"
excerpt: "OHSU Computation aims to be a complete resource for potential students and anyone else to understand the groups doing computation at OHSU. Computational research is dispersed across a number of departments and centers:
"
events:
- title: "Events"
excerpt: "OHSU Computational Events aims to provide a unified event calendar for events at OHSU"
people:
- title: "People"
excerpt: "OHSU Computation consists of many groups, staff, faculty, and students."
---
{% include feature_row %}
<a name="about"></a>
{% include feature_row id="intro" type = "center" %}
{% assign sorted_groups = site.data.groups | sort: 'name' %}
<div class = "feature__wrapper">
{% for group in sorted_groups %}
<a href=" {{ group.url }}" class = "btn btn--info">{{ group.name }}</a>
{% endfor %}
</div>
<a name="events"></a>
{% include feature_row id="events" type = "center" %}
{% assign sorted_events = site.events | sort: 'date' %}
{% capture now_moment %}{{ "today" | date: '%s' }}{% endcapture %}
{% for event in sorted_events %}
{% capture date %}{{ event.date | date: '%s' | plus: 0 }}{% endcapture %}
{% if date > now_moment %}
{% include events.html %}
{% endif %}
{% endfor %}