-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbase.php
More file actions
34 lines (23 loc) · 1.07 KB
/
base.php
File metadata and controls
34 lines (23 loc) · 1.07 KB
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
<?php use Roots\Sage\Wrapper; ?>
<!doctype html>
<html <?php language_attributes(); ?>>
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?> >
<!--[if IE]>
<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.', 'sage'); ?>
</div>
<![endif]-->
<div id="container">
<?php do_action('get_header'); ?>
<?php get_template_part('templates/header'); ?>
<main id="main" <?php echo get_field('options','background_image') ? 'style="background-image:url(' .get_field('options','background_image').')"' : ''; ?>>
<?php include Wrapper\template_path(); ?>
</main>
<?php do_action('get_footer'); ?>
<?php get_template_part('templates/footer'); ?>
</div>
<?php wp_footer(); ?>
<?php get_template_part('templates/analytics'); ?>
</body>
</html>