-
Notifications
You must be signed in to change notification settings - Fork 32
/
404.html
39 lines (34 loc) · 1.05 KB
/
404.html
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
30
31
32
33
34
35
36
37
38
39
---
title: Not Found
layout: layouts/default.liquid
tmpl: page
permalink: 404.html
excludeFromSearch: true
---
<div class="layout-list">
<h1 class="primary-title">{{ title }}</h1>
<article>
<p>We couldn’t find what you were looking for—sorry!</p>
<p>I wonder if I can convert you to read one of these blog posts instead without it coming off as scammy and awkward.</p>
<hr style="margin-top: 10vw">
</article>
<article>
<h2>Writing</h2>
<ol class="posts">
{% for post in collections.latestPosts limit:4 %}
{% include "post-list-entry.html", ignoreYear: "true" %}
{% endfor %}
<li><em><a href="/web/" class="posts-link posts-link-more">…see archives.</a></em></li>
</ol>
<h2>Popular 🔥</h2>
<ol class="posts">
{% for post in collections.popularPostsRanked limit:3 %}
{% include "post-list-entry.html", ignoreYear: "true" %}
{% endfor %}
<li><em><a href="/web/best-of" class="posts-link posts-link-more">…see all popular posts.</a></em></li>
</ol>
</article>
<article>
{% include "about.html" %}
</article>
</div>