layout | permalink |
---|---|
page |
/work/ |
<h1 class="page-heading">What have we been working on?</h1>
<ul class="post-list">
{% for post in site.categories.work %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<p>{{ post.description }}</p>
<div class="postimg-outer">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<img class="postimg" src="{{ post.img }}"/>
</a>
</div>
</li>
{% endfor %}
</ul>
</div>