-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.php
37 lines (19 loc) · 1 KB
/
base.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
28
29
30
31
32
33
34
35
36
37
<?php get_header( __tm_template_base() ); ?>
<?php do_action( '__tm_render_widget_area', 'full-width-header-area' ); ?>
<?php __tm_site_breadcrumbs(); ?>
<div <?php echo __tm_get_container_classes( array( 'site-content_wrap' ), 'content' ); ?>>
<?php do_action( '__tm_render_widget_area', 'before-content-area' ); ?>
<div class="row">
<div id="primary" <?php __tm_primary_content_class(); ?>>
<?php do_action( '__tm_render_widget_area', 'before-loop-area' ); ?>
<main id="main" class="site-main" role="main">
<?php include __tm_template_path(); ?>
</main><!-- #main -->
<?php do_action( '__tm_render_widget_area', 'after-loop-area' ); ?>
</div><!-- #primary -->
<?php get_sidebar(); // Loads the sidebar.php template. ?>
</div><!-- .row -->
<?php do_action( '__tm_render_widget_area', 'after-content-area' ); ?>
</div><!-- .container -->
<?php do_action( '__tm_render_widget_area', 'after-content-full-width-area' ); ?>
<?php get_footer( __tm_template_base() ); ?>