-
Notifications
You must be signed in to change notification settings - Fork 0
/
405.html
64 lines (62 loc) · 2.72 KB
/
405.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Romes" />
<meta name="keywords" content="Pythonic" />
<meta name="description" content="Pythonic" />
<title>{{title}} | {{name}}</title>
<link
rel="shortcut icon"
href="{% call path '/public/static/img/favicon.png' %}"
type="image/x-icon"
/>
<link rel="apple-touch-icon" href="{% call path '/public/static/img/favicon.png' %}" />
<link rel="stylesheet" href="{% call path '/public/static/css/bootstrap.min.css' %}" />
<link rel="stylesheet" href="{% call path '/public/static/font/ionicons/css/ionicons.min.css' %}" />
<link rel="stylesheet" href="{% call path '/public/static/css/main.min.css' %}" />
</head>
<body>
<div class="wrapper-landing-page">
<header class="header">
<nav class="navbar fixed-top px-2 px-md-4 py-2 align-items-center">
<a class="navbar-brand text-white" href="https://pytonik.com/"><img src="{% call path 'public'%}/static/img/logo.png" width="85px"></a></a>
<!-- <a href="#" class="btn-dload btn-dload-sm">Download v1.0</a> -->
</nav>
<section class="banner">
<div class="bg-halfscreen banner-bg"></div>
<div
class="banner-content d-flex align-items-center justify-content-center"
>
<div class="col-12 col-md-6 px-3 px-sm-4">
<div class="banner__title">
<h2 class="f-w--6 text-capitalize text-left mb-4">
{{title}}
</h2>
<h3 class="f-w--4 mb-5 mb-sm-4 text-left">
You seem to have drifted off. Do not falter, just
click the magic link below to get you right back
</h3>
</div>
<div class="d-flex align-items-center justify-content-center">
<a href="{% call url '/' %}" class="btn-dload btn-dload-sm"
>Return to Home Page</a
>
</div>
</div>
</div>
</section>
</header>
<footer class="footer">
<p class="m-0 f-xs--5 f-w--4 text-center col-12">
Copyright @ {% call now 'date' format='%Y' %} {{name}}
</p>
</footer>
</div>
<script src="{% call path 'public'%}/static/js/jquery-3.4.1.min.js"></script>
<script src="{% call path 'public'%}/static/js/bootstrap.bundle.min.js"></script>
<script src="{% call path 'public'%}/static/js/main.min.js"></script>
</body>
</html>