-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-fullwidth.php
More file actions
49 lines (33 loc) · 925 Bytes
/
page-fullwidth.php
File metadata and controls
49 lines (33 loc) · 925 Bytes
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
<?php
/*
Template Name: Full Width Template
*/
?>
<?php get_header(); ?>
<?php get_template_part('template','header'); ?>
<div id="blog">
<div class="wrap">
<div class="blog_title">
<h1><?php echo single_post_title(); ?></h1>
<a href="<?php echo home_url(); ?>/" class="blog_store"><?php _e('Back to Store','ocart'); ?></a>
</div>
<div class="blog_wrap">
<div class="blog_content blog_content_fullwidth">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="page-pad">
<div class="post-content">
<?php the_content(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<?php get_template_part('template','footer'); ?>
<?php get_footer(); ?>