-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
32 lines (24 loc) · 946 Bytes
/
page.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
<?php get_header(); ?>
<div class="container-fluid no-pad">
<?php echo get_template_part( '/includes/template/featured-asktherapist' ); ?>
<?php echo get_template_part( '/includes/template/featured-slider' ); ?>
</div>
<?php echo get_template_part( '/includes/template/tv-series' ); ?>
<div class="container" itemscope itemprop="mainContentOfPage" itemtype="http://schema.org/Blog">
<section id="content-area">
<div class="row">
<div class="col-sm-8">
<!-- tv-series -->
<?php echo get_template_part( '/includes/template/video-courses-slider' ); ?>
<hr>
<!-- top articles -->
<?php echo get_template_part( '/includes/template/top-articles' ); ?>
</div>
<div class="col-sm-4">
<!-- sidebar widget -->
<?php get_sidebar(); ?>
</div>
</div>
</section>
</div><!-- /container -->
<?php get_footer(); ?>