-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-full-width.php
61 lines (48 loc) · 1.49 KB
/
single-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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/***
* Template Name Posts: Full Width
***/
?>
<?php get_header(); ?>
<article id="content" role="main">
<div class="widepost grid_12">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('clearfix post-content'); ?>>
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="post-metadata clearfix">
<div class="grid_3 alpha">
<h6 class="entry-date"><?php argo_posted_on(); ?> </h6>
<h6>By
<?php
if (function_exists('coauthors_posts_links')):
coauthors_posts_links();
else:
the_author_posts_link();
endif; ?>
</h6>
</div>
<div class="grid_5 omega">
<?php get_template_part( 'post', 'meta' ); ?>
</div>
<div class="clearfix"></div>
</div> <!-- /.post-metadata-->
<div class="clearfix"></div>
<?php if (function_exists('the_subheading')) { the_subheading('<p>', '</p>'); } ?>
</header><!-- / entry header -->
<?php the_content(); ?>
</div> <!-- #post-## -->
</div>
<div class="grid_8">
<?php do_action('after_the_content'); ?>
<article id="comments" class="article-comments clearfix">
<h2 id="respond">Comments</h2>
<?php comments_template( '', true ); ?>
</article><!-- / comments -->
</div>
<?php endwhile; // end of the loop. ?>
<aside id="sidebar" class="grid_4">
<?php get_sidebar('post'); ?>
</aside> <!-- /.grid_4 -->
</article><!-- / #content .grid12 -->
<?php get_footer(); ?>