-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (41 loc) · 1.34 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
---
<div class="content" id="hero">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 text-center">
<h1>Cascadia<span class="thin">FEST</span></h1>
<p class="lead">{{ site.description }}</p>
<img class="tree fill-current" src="/assets/img/tree.svg" alt="" />
</div>
</div>
</div>
</div>
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h1 class="page-title">Latest News</h1>
<ul class="post-list">
{% for post in site.posts limit:5 %}
<li class="{% for c in post.categories %}post-cat-{{c}}{% endfor %}">
<h3>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
<p class="post-meta">
<span class="date">{{ post.date | date: "%b %-d, %Y" }}</span>
{% for category in post.categories %}
<a href="/{{ category }}/news/" class="btn btn-xs btn-default">{{ category }}</a>
{% endfor %}
</p>
{% if post.abstract %}
<p class="lead">{{ post.abstract }}</p>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>