-
Notifications
You must be signed in to change notification settings - Fork 0
/
full-width.php
42 lines (27 loc) · 1.54 KB
/
full-width.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
<?php
/*
Template Name: Full Width
*/
?>
<?php get_header(); ?>
<div id="content">
<div class="row">
<?php //get_sidebar(); ?>
<!-- Main Blog Content -->
<div class="twelve columns" role="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
<section class="entry-content clearfix" itemprop="articleBody">
<?php the_content(); ?>
</section> <!-- end article section -->
<footer class="article-footer">
<?php the_tags('<p class="tags"><span class="tags-title">Tags:</span> ', ', ', '</p>'); ?>
</footer> <!-- end article footer -->
<?php comments_template(); ?>
</article> <!-- end article -->
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- end #main -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>