-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-page.php
More file actions
35 lines (32 loc) · 1.09 KB
/
Copy pathabout-page.php
File metadata and controls
35 lines (32 loc) · 1.09 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
<?php
/*
* Template Name: About Page
* Description: A About Template for about page.
*/
?>
<?php get_header(); ?>
<section id="content" class="about pure-g">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="header">
<h1 class="about-title pd40"><?php the_title(); ?>
<?php $pp_breadcrumbs = ot_get_option('pp_breadcrumbs');
if ($pp_breadcrumbs === "on") {
?>
<span class="breadcrumb"><?php MyBreadcrumb(); ?></span>
<?php } ?>
</h1>
</header>
<section id="about" class="pure-g">
<div class="about-info d30">
<div class="pure-u-sm-1 pd30">
<?php the_content(); ?>
</div>
</div>
</section>
</article>
<?php endwhile;
endif;
?>
</section>
<?php get_footer(); ?>