-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
35 lines (32 loc) · 1.11 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
---
title: Home
order: 1
layout: base
---
{% assign grouped_seminars = site.seminars | group_by:"year" | reverse %}
{% assign recent_sem = grouped_seminars.first.items.first %}
<div class="jumbotron">
<div class="container">
<h1>Senior Seminar</h1>
<p>Computer Science at the University of Minnesota Morris</p>
</div>
</div>
<div class="container about-that">
<div class="columns">
<div class="one-third column">
<h2>{{ recent_sem.title }} Seminar</h2>
<p>View the most recent senior seminar. </p>
<a href="{{ recent_sem.url | replace: 'index.html', '' | relative_url }}" class="btn btn-outline" role="button">View Seminar</a>
</div>
<div class="one-third column">
<h2>{{ site.seminars | size }} Past Seminars</h2>
<p>View papers and slides from past senior seminars.</p>
<a href="{{ "/seminars/" | relative_url }}" class="btn btn-outline" role="button">View Seminars</a>
</div>
<div class="one-third column">
<h2>Resources</h2>
<p>Resources for students.</p>
<a href="{{ "/resources/" | relative_url }}" class="btn btn-outline" role="button">View Resources</a>
</div>
</div>
</div>