forked from skhan890/getmicah.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 699 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 699 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
---
layout: default
---
<div class="header">
<h1>{{ site.name }}</h1>
<ul>
{% for item in site.data.navigation %}
<li>
{% if item.title == 'github' %}
<a href="{{ item.url }}" target="_blank">{{ item.title }}</a>
{% else %}
<a href="{{ item.url }}">{{ item.title }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
<div class="blog">
<h1>Blog Posts:</h1>
<ul>
{% for post in site.posts %}
<li>
<span class="date">{{ post.date | date: '%Y %b %d' }}</span> - <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>