-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
23 lines (21 loc) · 898 Bytes
/
page.php
File metadata and controls
23 lines (21 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
<div id="container" class="site-container grid">
<div id="content" class="site-content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="article-content" >
<h1 class="site-h1"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry -->
</div><!-- .article -->
<?php endwhile; ?>
<?php else : ?>
<h2>Not found</h2>
<?php endif; ?>
</div><!-- #content -->
<div id="sidebar">
<?php dynamic_sidebar( 'sidebar-widgets' ); ?>
</div>
</div><!-- #container -->
<?php get_footer(); ?>