website/index.html

33 lines
652 B
HTML
Raw Normal View History

2016-04-09 08:23:47 +02:00
---
layout: default
---
{% include header.html %}
<div class="portfolio">
2016-06-10 22:42:15 +02:00
Below you'll find a list of projects we host.
2016-06-05 22:34:07 +02:00
</div>
<div class="portfolio">
<h1>Projects:</h1>
2016-04-09 08:23:47 +02:00
<ul>
{% for websites in site.data.websites %}
<li>
- <a href="{{ websites.url }}">{{ websites.name }}</a>
2016-04-09 08:23:47 +02:00
</li>
{% endfor %}
</ul>
</div>
2016-06-10 22:42:15 +02:00
<!--<div class="blog">
2016-04-09 08:23:47 +02:00
<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>
2016-06-10 22:42:15 +02:00
</div>-->