-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
126 lines (114 loc) · 5.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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Christian Krueger">
<!-- Primary Meta Tags -->
<title>Page not found</title>
<meta name="description" content="Sorry, the page you're looking for doesn't exist.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://moviebase.app/">
<meta property="og:title"
content="Moviebase - Discover, find and track movies & TV shows for Android.">
<meta property="og:description"
content="Explore movies & TV shows from the TMDB. Get detailed insights and track your watched episodes with Trakt. Available on your Android.">
<meta property="og:image" content="https://moviebase.app/img/social.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://moviebase.app/">
<meta property="twitter:site" content="@MoviebaseApp">
<meta property="twitter:title"
content="Moviebase - Discover, find and track movies & TV shows for Android.">
<meta property="twitter:description"
content="Explore movies & TV shows from the TMDB. Get detailed insights and track your watched episodes with Trakt. Available on your Android.">
<meta property="twitter:image" content="https://moviebase.app/img/social.png">
<link rel="icon" type="image/x-icon" href="img/favicon.png">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"/>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css"/>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-------------------------------------------------- menubar section ------------------------------------------->
<header class="header shadow-sm">
<div class="container">
<div class="header-main">
<a href="./index.html">
<div class="logo d-flex align-items-center">
<img src="img/logo_moviebase.svg" alt="Logo of Moviebase">
</div>
</a>
<div class="open-nav-menu">
<img src="img/menu.svg" alt="menu">
</div>
<div class="menu-overlay">
</div>
<nav class="nav-menu">
<div class="close-nav-menu">
<img src="img/close.svg" alt="close">
</div>
<ul class="menu">
<li class="menu-item">
<a href="https://forum.moviebase.app/">Forum</a>
</li>
<li class="menu-item">
<a href="./help.html">FAQ</a>
</li>
<li class="menu-item">
<a href="https://moviebase.canny.io/feature-requests">Feature Requests</a>
</li>
<li class="menu-item get_apps">
<a href="https://play.google.com/store/apps/details?id=com.moviebase">Get
the app</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-------------------------------------------------- not found section ------------------------------------------->
<section>
<div class="not_found_area">
<div class="container">
<div class="not_found_content text-center">
<h1 class="headline">404</h1>
<h2 class="py-3">Page not found</h2>
<h5 class="pb-5">Sorry, the page you're looking for doesn't exist.</h5>
<div class="primary_button">
<a href="./index.html">Back to home</a>
</div>
</div>
</div>
</div>
</section>
<!-------------------------------------------------- footer section ------------------------------------------->
<footer class="py-5">
<div class="container">
<div class="footer_content">
<div class="row">
<div class="col-md-4">
<div class="copyright pt-3">
<p>©2024 Christian Krueger. All rights reserved.</p>
</div>
</div>
<div class="col-md-8">
<div class="footer_menu pt-3">
<a href="https://play.google.com/store/apps/details?id=app.resubs">ReSubs</a>
<a href="https://crowdin.com/project/moviebase">Translations</a>
<a href="https://www.termsfeed.com/live/997eb585-2d8f-480c-ae4f-fe99a4d0c027">Privacy
Policy</a>
<a href="https://www.termsfeed.com/live/ab92839c-7341-4880-a7ad-0fff03f34826">Terms
of Use</a>
<a href="./imprint.html">Imprint</a>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>