-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (29 loc) · 1.14 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
---
layout: page
permalink: /404.html
section: 'Error'
---
<div class="row align-center">
<div class="small-12 columns">
<p class="text-center"><i class="fa fa-chain-broken fa-5x"></i></p>
<h2 class="text-center">404 - Page not found</h2>
<p class="text-center">This page doesn't exist! Perhaps you can find what you're looking for below.</p>
</div>
<div class="small-12 columns" style="padding-top: 4rem">
<h2 class="text-center">Latest Posts</h2>
</div>
{% for post in site.posts limit:3 %}
<div class="small-12 columns">
<h4 class="subheader float-right">{{ post.date | date: "%-d %B %Y" }}</h4>
<h3>
<a href="{{ post.url }}">
<div class="thumbnail show-for-medium">
<img {%if post.image %}src="{{ post.image.url }}" alt="{{ post.image.alt }}"{% else %}src="/assets/images/icon64.png" alt="Site logo"{% endif %} style="width: 35px; height:35px;">
</div>
{{ post.title }}
</a>
</h3>
<p class="text-justify">{{ post.excerpt | remove: '<p>' | remove: '</p>' }} <a href="{{ post.url }}">Read more <i class="fa fa-arrow-right"></i></a></p>
</div>
{% endfor %}
</div>