-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
35 lines (27 loc) · 832 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
28
29
30
31
32
33
34
35
<?php
/*
* @package WordPress
* @subpackage Skin
* @since Skin 1.0
*/
get_header(); ?>
<main>
<div class="main-wrapper">
<div class="container content-holder">
<div class="row">
<div class="content-wrapper col-md-8">
<?php
/*
* This action hook will get the layout file selected from the theme customizer. For more details check hooks.php
*
* @since Skin 1.0
*/
do_action('index_content_area_hook');
?>
</div><!-- .content-wrapper -->
<?php get_sidebar(); ?>
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .main-wrapper -->
</main>
<?php get_footer(); ?>