website/index.html

27 lines
503 B
HTML
Raw Normal View History

2016-03-11 04:20:09 +01:00
---
layout: default
---
2016-03-10 02:16:08 +01:00
2016-03-14 04:43:55 +01:00
<div class="portfolio">
<h1>Portfolio</h1>
<ul>
{% for project in site.data.projects %}
<li>
<a href="{{ project.url }}">{{ project.title }}</a>
</li>
{% endfor %}
</ul>
</div>
2016-03-10 02:16:08 +01:00
2016-03-14 05:08:18 +01:00
2016-03-14 04:43:55 +01:00
<div class="blog">
<h1>Blog</h1>
<ul>
2016-03-11 04:20:09 +01:00
{% for post in site.posts %}
2016-03-14 04:43:55 +01:00
<li>
<a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: '%b %d %Y' }}</a>
</li>
2016-03-11 04:20:09 +01:00
{% endfor %}
</ul>
</div>