summaryrefslogtreecommitdiff
path: root/_includes/all-posts.liquid
blob: f8377b1904f3287769e21bcff43718ba183f7f62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<aside class="menu">
    <p class="menu-label">
    All Posts 
    </p>

    <ul class="menu-list">
        {% for post in collections.posts.pages %}
            <li>
                <a href="{{ post.permalink }}">
                    {% if post.published_date %}
                        <span class="tag">
                            {{ post.published_date | date: "%e %b %Y" }}
                        </span>
                    {% endif %}
                    {{ post.title }}
                </a>
            </li>
        {% endfor %}
    </ul>
</aside>