-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
46 lines (43 loc) · 1.4 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
40
41
42
43
44
45
46
---
layout: default
permalink: /404.html
---
<div class="container mt-5 mb-5 text-center">
<h1 class="display-1">404</h1>
<h2 class="mb-4">Page Not Found</h2>
<p class="lead mb-5">The page you are looking for doesn't exist or has been moved.</p>
<div class="mb-5">
<a href="/" class="btn btn-primary me-2">
<i class="bi bi-house-door me-1"></i>Home
</a>
<a href="/blog/" class="btn btn-secondary">
<i class="bi bi-journal-text me-1"></i>Blog
</a>
</div>
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card shadow-sm">
<div class="card-body">
<h3 class="h5 mb-3">Looking for something else?</h3>
<ul class="list-unstyled">
<li class="mb-2">
<a href="https://docs.aiogram.dev" class="text-decoration-none">
<i class="bi bi-file-text me-2"></i>Documentation
</a>
</li>
<li class="mb-2">
<a href="https://github.com/aiogram/aiogram" class="text-decoration-none">
<i class="bi bi-github me-2"></i>GitHub Repository
</a>
</li>
<li>
<a href="https://t.me/aiogram" class="text-decoration-none">
<i class="bi bi-telegram me-2"></i>Telegram Community
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>