-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
66 lines (47 loc) · 1.88 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
---
layout: default
---
<div class="home">
<!--<h1 class="page-heading">Posts</h1>-->
<ul class="post-list">
<h1>Opinions</h1>
{% for post in site.posts %}
{% for category in post.categories %}
{% if category == "Opinions" %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> | <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name"><a href="https://github.com/{{ post.author }}">{{ post.author }}</a></span></span>
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
</li>
{% endif %}
{% endfor %}
{% endfor %}
<h1>Slides</h1>
{% for post in site.posts %}
{% for category in post.categories %}
{% if category == "Slides" %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name"><a href="https://github.com/{{ post.author }}">{{ post.author }}</a></span></span>
<h3>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
<h1>Assignments</h1>
{% for post in site.posts %}
{% for category in post.categories %}
{% if category == "Assignments" %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name"><a href="https://github.com/{{ post.author }}">{{ post.author }}</a></span></span>
<h3>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>