-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (30 loc) · 1.62 KB
/
Copy path404.html
File metadata and controls
32 lines (30 loc) · 1.62 KB
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
---
layout: default
title: "404"
hide-in-nav: true
description: "Page Not Found"
no-catalog: true
permalink: /404.html
sitemap: false
robots: noindex
---
<div class="container" style="padding-top: 80px; padding-bottom: 80px;">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1" style="text-align: center;">
<h1 style="font-size: 6rem; font-weight: 700; margin: 0; color: var(--text-primary); letter-spacing: -2px;">404</h1>
<p style="font-size: 1.25rem; color: var(--text-muted); margin: 16px 0 40px;">Page not found.</p>
<a href="{{ site.baseurl }}/" style="color: var(--accent-primary); text-decoration: none; font-weight: 600; font-size: 1rem;">← Back to Home</a>
<div style="margin-top: 56px; text-align: left; max-width: 480px; margin-left: auto; margin-right: auto;">
<h3 style="font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px;">Recent Posts</h3>
<ul style="list-style: none; padding: 0; margin: 0;">
{% for post in site.posts limit:3 %}
<li style="margin-bottom: 12px;">
<a href="{{ post.url | prepend: site.baseurl }}" style="color: var(--text-primary); text-decoration: none; font-weight: 500;">{{ post.title }}</a>
<span style="color: var(--text-muted); font-size: 0.85rem; margin-left: 8px;">{{ post.date | date: "%Y.%m.%d" }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>