-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
27 lines (27 loc) · 904 Bytes
/
index.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
<?php
//----------------------------------------------------
// Index
//----------------------------------------------------
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<?php get_template_part('components/app-head'); ?>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php get_template_part('components/app-header'); ?>
<?php get_template_part('components/app-nav'); ?>
<main class="app-main" id="app-main">
<?php if (is_404()): ?>
<?php get_template_part('pages/404'); ?>
<?php elseif (is_page()): ?>
<?php get_template_part('pages/page'); ?>
<?php elseif (is_single()): ?>
<?php get_template_part('pages/single'); ?>
<?php else: ?>
<?php get_template_part('pages/index'); ?>
<?php endif; ?>
<?php get_template_part('components/app-widget'); ?>
</main>
<?php get_template_part('components/app-footer'); ?>
</body>
</html>