-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.php
More file actions
executable file
·36 lines (33 loc) · 924 Bytes
/
base.php
File metadata and controls
executable file
·36 lines (33 loc) · 924 Bytes
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
<?php
use Roots\Sage\Setup;
use Roots\Sage\Wrapper;
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if IE]>
<div class="red white-text alert-warning">
<div class="container">
<div class="col s12">
You are using an <strong>outdated</strong> browser.
<br>
Please <a href="http://browsehappy.com/" class="black-text">upgrade your browser</a> to improve your experience.
</div>
</div>
</div>
<![endif]-->
<?php
do_action('get_header');
get_template_part('templates/header');
?>
<main class="main">
<?php include Wrapper\template_path(); ?>
</main><!-- /.main -->
<?php
do_action('get_footer');
get_template_part('templates/footer');
wp_footer();
?>
</body>
</html>