-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-full.php
More file actions
executable file
·71 lines (44 loc) · 1.47 KB
/
template-full.php
File metadata and controls
executable file
·71 lines (44 loc) · 1.47 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
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
62
63
64
65
66
67
68
69
70
71
<?php /* Template Name: Full size */ ?>
<?php get_header(); ?>
<div class="row">
<!-- Section -->
<section class="span12">
<div class="main">
<?php if ( have_posts() ): while ( have_posts() ) : the_post(); ?>
<!-- Article -->
<article id="post-<?php the_ID(); ?>" <?php post_class( 'post_content' ); ?>>
<!-- Post Title -->
<div class="section">
<?php echo bootstrapwp_breadcrumbs(); ?>
<h1><?php the_title(); ?></h1>
</div>
<!-- /Post Title -->
<div class="inner">
<!-- Post Details -->
<ul class="post_details">
<li class="date"><?php spritz_posted_on(); ?></li>
<li class="comments"><?php comments_popup_link( __( 'Leave your thoughts', 'spritz' ), __( '1 Comment', 'spritz' ), __( '% Comments', 'spritz' )); ?></li>
</ul>
<!-- /Post Details -->
<?php the_content(); ?>
<?php get_template_part( 'newsletter' ); ?>
<?php edit_post_link( 'Edit Post', '<p class="label label-warning">', '</p>' ); // Always handy to have Edit Post Links available ?>
<?php comments_template( '', true ); // Remove if you don't want comments ?>
</div>
</article>
<!-- /Article -->
<?php endwhile; ?>
<?php else: ?>
<!-- Article -->
<article>
<div class="inner">
<h2><?php _e( 'Sorry, nothing to display.', 'spritz' ); ?></h2>
</div>
</article>
<!-- /Article -->
<?php endif; ?>
</div>
</section>
<!-- /Section -->
</div>
<?php get_footer(); ?>