-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.php
37 lines (34 loc) · 835 Bytes
/
content.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
<?php
/**
* Content
*
* Displays the mid section, which includes the loop (i.e., the content), the
* comments, and the sidebars.
*
* @package WordPress
* @subpackage Twenty_Em
* @since Twenty Em 0.1.0
*/
?>
<div id="mid" class="layer">
<div class="wrapper">
<div class="row row-1">
<div class="col section-1">
<div id="primary">
<div id="content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<h1><?php _e( 'Not Found', 'twentyem' ); ?></h1>
<p><?php _e( 'Sorry, but the requested content was not found.', 'twentyem' ); ?></p>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
</div>
<?php get_sidebar(); ?>
<div class="clear"></div>
</div>
</div>
</div><!-- #mid -->