-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·35 lines (30 loc) · 1.08 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
---
layout: base
---
<section id="wrapper">
<header id="header">
<a id="title" class="index">
<img src="{{ site.baseurl }}/images/logo.png" style="width: 15em">
</a>
</header> <!--header-->
<ul id="post-list">
{% for post in site.posts %}
<li>
<a href='{{ post.url | prepend: site.baseurl }}'><aside class="dates">{{ post.date | date: "%b %d" }}</aside></a>
<a href='{{ post.url | prepend: site.baseurl }}'>{{ post.title }} {% if post.subtitle|length %}<h2>{{ post.subtitle }}</h2>{% endif %}</a>
</li>
{% endfor %}
</ul> <!--post-list-->
{% if site.posts.size >= 1 %}
<footer id="post-list-footer">
<a id="archive-link" href="{{ site.baseurl }}/archive"> <span class="arrow">←</span> Older posts</a>
</footer>
{% endif %}
<footer id="about-me">
{% capture introduction %}{% include introduction.md %}{% endcapture %}
{{ introduction | markdownify }}
</footer>
<footer id="footer">
<p class="small">Lorem ipsum dolor, sit <a href="http://www.twitter.com/">@loremipsum</a>.</p>
</footer>
</section> <!--wrapper-->