-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.liquid
29 lines (27 loc) · 1.02 KB
/
index.liquid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
title: "Zach Leatherman"
titleScreenReaderOnly: true
layout: layouts/pagealign.liquid
enableWebmentions: true
eleventyImport:
collections: ["blog-post"]
---
<div id="about-index" class="about-description">
<p>{% include "bio-text-medium.html" %} <a href="/about/">Read more<span class="a11y-only"> about Zach</span> »</a></p>
</div>
<article>
<h2>Newest</h2>
<ol class="posts posts-withimg posts-home h-feed">
{% for post in collections.homepageNewestPosts limit:6 %}
{% include "post-list-entry.html", ignoreYear: "true", hfeed: true, previewImages: true %}
{% endfor %}
<li><em><a href="/web/" class="posts-link posts-link-more">…see full archives.</a></em></li>
</ol>
<h2>Popular 🔥</h2>
<ol class="posts h-feed">
{% for post in collections.popularPostsRanked limit:6 %}
{% include "post-list-entry.html", ignoreYear: "true", hfeed: true, ignorePopularity: true %}
{% endfor %}
<li><em><a href="/web/best-of" class="posts-link posts-link-more">…see all popular posts.</a></em></li>
</ol>
</article>