-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
21 lines (20 loc) · 789 Bytes
/
404.php
File metadata and controls
21 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body class="bg-dark">
<div class="text-center min-h-screen w-full md:w-1/2 md:mx-auto flex items-center justify-center text-white">
<article class="flex flex-col justify-center items-center">
<?php if( have_rows('404', 'option') ): ?>
<?php while( have_rows('404', 'option') ): the_row(); ?>
<?php the_sub_field('Missing', 'option'); ?>
<?php endwhile; ?>
<?php endif; ?>
</article>
</div>
</body>
</html>