forked from hugoferreira/papyrus-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (45 loc) · 1.58 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
---
layout: default
cover: false
---
<header>
<h1>{{ site.name }}</h1>
</header>
<hr class="stylish"/>
<main class="home-main">
<p>Welcome to CS 125 Summer of Side Projcts! All the times are in Chicago Time. Each week is completely standalone so don't worry if you missed something and have a backlog. </p>
<ul>
<li>Live Zoom Workshops (<a href="https://illinois.zoom.us/j/81813978213?pwd=eHBuWGpmQ2xBcXJ3ZUI4ZDRmYmFuQT09">link</a> every Tuesday Noon (also recorded and text versions available)</li>
<li>Project Ideas (Form) due Wednesday Midnight</li>
<li>Project Submission due the following Monday Midnight(form and forum post)</li>
</ul>
<hr>
{% for collection in site.collections %}
{% if collection.docs.size > 0 %}
<section id="posts">
<details open>
<summary>
<h3 class="home-page-heading">{{ collection.title }}</h3>
</summary>
<div class="parent">
{% for post in collection.docs %}
<div class="post-wrapper">
<time class="post-date" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%m/%d" }}</time>
<a class="post-link" href="{{ post.url }}">
{{ post.title }}
</a>
</div>
{% endfor %}
</div>
</details>
</section>
{% endif %}
{% endfor %}
<iframe src="https://calendar.google.com/calendar/embed?src=c_spuatvgovpkvteluis730bpbrc%40group.calendar.google.com&ctz=America%2FChicago"
style="border: 0"
width="800"
height="600"
frameborder="0"
scrolling="no">
</iframe>
</main>