-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_old.html
87 lines (74 loc) · 2.18 KB
/
index_old.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
---
<div class="home">
<p>{{ site.description }}</p>
<hr>
<h1 class="page-heading">Projects</h1>
<ul class="summary-list">
{% for project in site.projects reversed %}
<li>
<div class='summary-container'>
<div class='summary-icon-square'>
<img src="/images{{ project.url }}{{ project.icon }}"/>
</div>
<div class='summary-info'>
<h2>
<a class="summary-link" href="{{ project.url | prepend: site.baseurl }}">{{ project.title }}</a>
</h2>
{% assign tags = project.tags %}
{% include tags.html %}
<p>{{ project.excerpt }}</p>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
<div class="home">
{% if site.posts.size != 0 %}
<hr>
<h1 class="page-heading">Posts</h1>
<ul class="summary-list">
{% for post in site.posts reversed %}
<li>
<div class='summary-container'>
<div class='summary-icon-roundy'>
<img src="/images{{ post.url }}{{ post.icon }}"/>
</div>
<div class='summary-info'>
<h2>
<a class="summary-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{% assign tags = post.tags %}
{% include tags.html %}
<p>{{ post.excerpt }}</p>
</div>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
<hr>
<h1 class="page-heading">Talks</h1>
<ul class="summary-list">
{% for talk in site.talks reversed %}
<li>
<div class='summary-container'>
<div class='summary-icon'>
<img src="/images{{ talk.url }}{{ talk.icon }}"/>
</div>
<span class="summary-meta">{{ talk.date | date: "%b %-d, %Y" }}</span>
<div class='summary-info'>
<h2>
<a class="summary-link" href="{{ talk.url | prepend: site.baseurl }}">{{ talk.title }}</a>
</h2>
{% assign tags = talk.tags %}
{% include tags.html %}
<p>{{ talk.excerpt }}</p>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>