-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 800 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 800 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
31
32
---
layout: default
---
<section id="top">
<div class="content">
<div id="logo">
<img src="/img/index/logo.png">
</div>
<p class="logo-desc"> {{site.description}} </p>
</div>
<a id="view-git" href="http://beefe.github.io/">
<img src="/img/index/icon_bg.png">
</a>
</section>
{% for post in site.posts %}
{% if post.identifier%}
<section id="{{post.identifier}}">
{% else %}
<section>
{% endif %}
<div class="content">
<h1>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</h1>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<p> {{ post.excerpt | strip_html }} </p>
</div>
</section>
{% endfor %}