-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·31 lines (30 loc) · 1.23 KB
/
index.php
File metadata and controls
executable file
·31 lines (30 loc) · 1.23 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
<?php
get_header();
?>
<div class="container-fluid">
<div class="row">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div id="container-main" class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col l12 m12 s12">
<?php
if(!is_front_page()) {
the_title("<h1>", "</h1>");
}
breadcrumb();
the_content();
?>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>