Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.11 KB

File metadata and controls

50 lines (40 loc) · 1.11 KB
layout posts-index
title Work
type page
order 1
slug work
show_in_nav true
show_title true
More wonderful things coming to this page.
In the meantime you can request to see the work.
{% include contactform.html %}

{% comment %}

{% include work-brief.html %}

Categories:

{% for category in site.categories %}
        <p>{{ category[0] }}</p>
        <ul>
            {% for post in category[1] %}
            <li>
                <a href="{{ post.url }}">{{ post.title }}</a>
            </li>
            {% endfor %}
        </ul>
    {% endfor %}

</div>

<div class="uk-card uk-card-body uk-card-secondary uk-margin ">
    <h3>Tags:</h3>
    {% for tag in site.tags %}

        <p>{{ tag[0] }}</p>
        <ul>
            {% for post in tag[1] %}
            <li><a href="{{ post.url }}">{{ post.title }}</a></li>
            {% endfor %}
        </ul>
    {% endfor %}

</div>

{% endcomment %}