-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (30 loc) · 902 Bytes
/
index.html
File metadata and controls
executable file
·30 lines (30 loc) · 902 Bytes
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
---
layout: default
title: Home
---
<div class="container">
<div id="intro">
<span class="logo"></span>
<hr/>
<p class="mission">Join a group of passionate technologists eager to educate and collaborate with members of the web development community.</p>
<hr/>
</div>
<div class="row">
{% for post in site.posts %}
<div class="span4">
<h2 class="title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="meta">
{% if post.category contains 'handout' %}
<i class="icon-file"></i>
{% else %}
<i class="icon-film"></i>
{% endif %}
Date: {{ post.date || date: "%d %B %Y" }}
</p>
<div class="entry">
{{ post.abstract | strip_html | truncatewords: 100 }}
</div>
</div>
{% endfor %}
</div>
</div>