-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
44 lines (30 loc) · 945 Bytes
/
index.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
<?php
/*
Template Name: Client Template
*/
include('includes/header.php');
?>
<div class="pusher">
<div class="wrapper">
<div class="main-content">
<div class="ui text container">
<div class="home-text client-text">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h3>
<?php the_title(); ?>
</h3>
<div class="ui horizontal divider"></div>
<?php the_content(); ?>
</div><!-- /.blog-post -->
<?php endwhile; ?>
<?php else : ?>
<p><?php __('No Page Found'); ?></p>
<?php endif; ?>
</div> <!-- home-text -->
</div> <!-- container -->
</div> <!-- main content -->
</div> <!-- wrapper -->
</div> <!-- pusher -->
</div>
<?php include('includes/footer.php'); ?>