-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject-template.php
53 lines (36 loc) · 1.24 KB
/
project-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
48
49
50
51
52
<?php
/*
Template Name: Project Template
*/
include('includes/header.php');
?>
<div class="pusher">
<div class="wrapper">
<div class="main-content">
<div class="ui container">
<div class="ui two column stackable grid">
<div class="middle aligned column">
<h1><?php the_title(); ?></h1>
</div>
<div class="column">
<div class="home-text">
<p>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
</div><!-- /.blog-post -->
<?php endwhile; ?>
<?php else : ?>
<p><?php __('No Page Found'); ?></p>
<?php endif; ?>
</p>
</div>
</div> <!-- column -->
</div> <!-- grid -->
<?php dynamic_sidebar('project_bar'); ?>
</div> <!-- container -->
</div> <!-- main-content -->
</div> <!-- wrapper -->
</div> <!-- pusher -->
</div>
<?php include('includes/footer.php'); ?>