Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 864 Bytes

Work.md

File metadata and controls

31 lines (28 loc) · 864 Bytes
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>