-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (29 loc) · 1.58 KB
/
404.html
File metadata and controls
32 lines (29 loc) · 1.58 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: page
title: "404 - Page not found"
description: "The Requested Page Cannot Be Found"
header-img: "img/default.jpg"
permalink: /404.html
---
<h1>Oh NO! Your request has been countered!</h1>
<h2>Mana Screwed! The Spell to Summon This Page Has Failed</h2>
<p>We apologize, but the content you are seeking no longer exists. May we suggest exploring the options listed below instead?</p>
<p>For more updates and insights, follow me on Twitter <a href="https://twitter.com/zombienoxx" target="_blank">@zombienoxx</a>!</p>
<div itemscope itemtype="https://schema.org/Blog">
{% for post in site.posts %}
<div class="post-preview" itemscope itemtype="https://schema.org/BlogPosting">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 itemprop="headline" class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 itemprop="description" class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">Posted by <span itemprop="author">{% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %}</span> on {{ post.date | date: "%B %d, %Y" }}</p>
<meta itemprop="datePublished" content="{{ post.date }}">
<span class="hide"><img itemprop="image" src="{{ site.baseurl }}/{% if post.header-img %}{{ post.header-img }}{% else %}{{ site.header-img }}{% endif %}" alt="{{ post.title }}"></span>
</div>
<hr>
{% endfor %}
</div>