-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-home.php
More file actions
51 lines (47 loc) · 1.55 KB
/
Copy pathpage-home.php
File metadata and controls
51 lines (47 loc) · 1.55 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* The template for displaying pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that
* other "pages" on your WordPress site will use a different template.
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
get_header(); ?>
<main id="main" class="site-main" role="main">
<div class="home-top">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
<div class="container">
<div class="row">
<div class="col-three">
<img src="<?php echo get_template_directory_uri(); ?>/images/blog.png" alt="">
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("home-left");
} ?>
</div>
<div class="col-three">
<img src="<?php echo get_template_directory_uri(); ?>/images/apps.png" alt="">
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("home-middle");
} ?>
</div>
<div class="col-three">
<img src="<?php echo get_template_directory_uri(); ?>/images/calendar.png" alt="">
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("home-right");
} ?>
</div>
</div>
</div>
</main>
<?php get_sidebar( 'content-bottom' ); ?>
<?php get_footer(); ?>