-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.17 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.17 KB
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
---
layout: default
---
<div id="banner-wrapper">
<div id="banner" class="box container">
<div class="row">
<div class="12u">
<h1>{{site.title}}</h1>
<p>{{site.description}}</p>
</div>
</div>
</div>
</div>
<div id="features-wrapper">
<div class="container">
<div class="row">
{% for post in site.posts %}
<div class="4u 12u(medium)">
<section class="box feature {% if forloop.first %}first{% elsif forloop.last %}last{% else %}middle{% endif %}">
<figure class="image featured">
<a href="{{ post.url }}" title="The Axis of Stevil Shows You: {{ post.title }}">
<img src="{{ post.image }}" alt="The Axis of Stevil Shows You: {{ post.title }}" />
</a>
</figure>
<div class="inner">
<header>
<h2><a href="{{ post.url }}" title="The Axis of Stevil Shows You: {{ post.title }}">The Axis of Stevil Shows You: {{ post.title }}</a></h2>
<p>{{ post.date | date: "%b %d, %Y" }}</p>
</header>
<!-- {{ post.content }} -->
</div>
</section>
</div>
{% endfor %}
</div>
</div>
</div>