-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
42 lines (36 loc) · 826 Bytes
/
404.html
File metadata and controls
42 lines (36 loc) · 826 Bytes
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
40
41
42
---
layout: page
---
<style type="text/css" media="screen">
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
.text-center {
text-align: center;
}
</style>
<div class="row row-center text-center">
<div>
<h1>404</h1>
<p><strong>Ничего не найдено :(</strong></p>
<p>Наверное битая ссылка, такое случается...</p>
</div>
</div>
<div class="posts">
<h2>Последние 3 выпуска</h2>
<div class="row row-center">
<ul>
{% assign first_posts = site.posts | slice:0, 3 %}
{% for post in first_posts %}
<li>
<h2>
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
</div>
</div>