website/index.html

29 lines
566 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-15 05:41:41 +01:00
{% include header.html %}
2016-03-14 05:08:18 +01:00
2016-03-15 04:08:03 +01:00
<div class="portfolio">
2016-03-15 01:31:35 +01:00
<h1>Web Design:</h1>
<ul>
{% for websites in site.data.websites %}
<li>
<a href="{{ websites.url }}">{{ websites.url }}</a>
</li>
{% endfor %}
</ul>
</div>
2016-03-14 04:43:55 +01:00
<div class="blog">
2016-03-15 01:31:35 +01:00
<h1>Blog Posts:</h1>
2016-03-14 04:43:55 +01:00
<ul>
2016-03-11 04:20:09 +01:00
{% for post in site.posts %}
2016-03-14 04:43:55 +01:00
<li>
2016-03-15 01:31:35 +01:00
<span class="date">{{ post.date | date: '%b %d %Y' }}</span> - <a href="{{ post.url }}">{{ post.title }}</a>
2016-03-14 04:43:55 +01:00
</li>
2016-03-11 04:20:09 +01:00
{% endfor %}
</ul>
</div>