-
Notifications
You must be signed in to change notification settings - Fork 1
/
home-template.php
executable file
·47 lines (42 loc) · 1.92 KB
/
home-template.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
38
39
40
41
42
43
44
45
46
47
<?php
/*
* Template Name: Home Template
*/
get_header(); ?>
<div class="main-container">
<div class="row justify-content-center home-about-wrapper px-2 py-2">
</div>
<div class="row no-gutters">
<div class="col-md-3 col-sm-12 dp-flex left-panel-wrapper">
<?php get_template_part('template-parts/home-page/home-left-panel'); ?>
</div>
<div class="col-md-6 col-sm-12 dp-flex center-panel-wrapper">
<?php get_template_part('template-parts/home-page/home-onlinefirst-center-panel'); ?>
</div>
<div class="col-md-3 col-sm-12 dp-flex right-panel-wrapper">
<?php get_template_part('template-parts/home-page/home-right-panel'); ?>
</div>
</div>
<div class="row" style="width: 100%;">
<?php get_template_part('template-parts/home-page/horizontal-advertisement'); ?>
</div>
<!-- <div class="row mobile-margin-adjustment">-->
<!-- --><?php //get_template_part('template-parts/home-page/mostread-bytopic'); ?>
<!-- </div>-->
<div class="row">
<?php get_template_part('template-parts/home-page/subscribe-box'); ?>
</div>
<div class="row mobile-margin-adjustment">
<?php get_template_part('template-parts/home-page/mostread-bycategory'); ?>
</div>
<div class="row mobile-margin-adjustment" style="width: 100%;">
<?php get_template_part('template-parts/home-page/home-blog'); ?>
</div>
<div class="row mobile-margin-adjustment" style="width: 100%;">
<?php get_template_part('template-parts/home-page/home-media'); ?>
</div>
<!-- <div class="row">-->
<!-- --><?php //get_template_part('template-parts/home-page/mostread-flick'); ?>
<!-- </div>-->
</div>
<?php get_footer(); ?>