-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.php
More file actions
32 lines (30 loc) · 989 Bytes
/
base.php
File metadata and controls
32 lines (30 loc) · 989 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
<?php
use Source\Config;
use Source\Wrapper;
get_template_part('templates/head');
?>
<body <?php body_class(); ?>>
<!--[if lt IE 9]>
<div class="alert alert-warning">
<?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'source'); ?>
</div>
<![endif]-->
<div class="wrap" role="document">
<?php
do_action('get_header');
get_template_part('templates/header');
?>
<div class="content-wrap">
<div class="content">
<div class="container">
<main class="main" role="main">
<?php include Wrapper\template_path(); ?>
</main><!-- /.main -->
</div><!-- /.container -->
</div><!-- /.content -->
<?php get_template_part('templates/footer'); ?>
</div><!-- /.content-wrap -->
</div><!-- /.wrap -->
<?php wp_footer(); ?>
</body>
</html>