website/index.html

33 lines
652 B
HTML

---
layout: default
---
{% include header.html %}
<div class="portfolio">
Below you'll find a list of projects we host.
</div>
<div class="portfolio">
<h1>Projects:</h1>
<ul>
{% for websites in site.data.websites %}
<li>
- <a href="{{ websites.url }}">{{ websites.name }}</a>
</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>-->