-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-nosidebar.php
81 lines (43 loc) · 1.9 KB
/
template-nosidebar.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/*
Template Name: No sidebar template
*/
?>
<?php get_header(); ?>
<div class="wrapper section-inner">
<?php require('ad-top.php'); ?>
<div class="content center">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="posts">
<div class="post">
<?php if ( has_post_thumbnail() ) : ?>
<div class="featured-media">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_post_thumbnail('post-image'); ?>
<?php if ( !empty(get_post(get_post_thumbnail_id())->post_excerpt) ) : ?>
<div class="media-caption-container">
<p class="media-caption"><?php echo get_post(get_post_thumbnail_id())->post_excerpt; ?></p>
</div>
<?php endif; ?>
</a>
</div> <!-- /featured-media -->
<?php endif; ?>
<div class="post-header">
<h2 class="post-title"><?php the_title(); ?></h2>
</div> <!-- /post-header -->
<div class="post-content">
<?php the_content(); ?>
<?php if ( current_user_can( 'manage_options' ) ) : ?>
<p><?php edit_post_link( __('Edit', 'hemingway') ); ?></p>
<?php endif; ?>
<div class="clear"></div>
</div> <!-- /post-content -->
</div> <!-- /post -->
<?php comments_template( '', true ); ?>
</div> <!-- /posts -->
<?php endwhile; else: ?>
<p><?php _e("We couldn't find any posts that matched your query. Please try again.", "hemingway"); ?></p>
<?php endif; ?>
</div> <!-- /content -->
</div> <!-- /wrapper section-inner -->
<?php get_footer(); ?>