-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
55 lines (32 loc) · 1.11 KB
/
page.php
File metadata and controls
55 lines (32 loc) · 1.11 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
52
53
54
55
<?php
get_header(); ?>
<?php get_template_part('page-carousel'); wp_reset_query(); ?>
<!-- Main blog .container -->
<div class="container">
<!-- Teasers right side wrapper col-->
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" >
<div class="row margin-top-10">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1 class="page-title"><?php the_title(); ?></h1>
</div>
<hr class="hr-sm">
<?php
while ( have_posts() ) : the_post(); ?>
<!-- ITEM-->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-10 col-lg-12">
<?php the_content(); ?>
</div>
</div>
<!-- /ITEM-->
<?php endwhile; ?>
</div>
</div>
<!-- /Main blog .container -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
</div>
<!-- /.container-->
<?php get_template_part('pre-footer');?>
<?php get_footer(); ?>