This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.php
executable file
·54 lines (43 loc) · 1.71 KB
/
404.php
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
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head <?php do_action( 'add_head_attributes' ); ?>>
<!-- Title -->
<!-- =================================== -->
<title><?php wp_title(''); ?></title>
<!-- Styles -->
<!-- =================================== -->
<link href="<?php echo get_template_directory_uri(); ?>/assets/icons/favicon.png" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/assets/icons/touch.png" rel="apple-touch-icon-precomposed">
<!-- Meta -->
<!-- =================================== -->
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Webfont -->
<!-- =================================== -->
<!-- Wordpress Generated -->
<!-- =================================== -->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- Google Analytics -->
<!-- =================================== -->
<?php get_template_part( 'includes/analyticstracking' ); ?>
<div class="container">
<div class="error-message">
<h1>404</h1>
<h2>Page not found</h2>
<p>Unfortunately, we were unable to find that page or it does not exist.<br />Please <a href="https://blog.mozilla.org/webrtc">return</a> to the home page.</p>
</div>
<div class="site-logo-wrapper">
<!-- ==== Site Logo ==== -->
<div class="site-logo">
<a href="https://blog.mozilla.org/webrtc">
Advancing WebRTC
</a>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>