-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
34 lines (25 loc) · 1005 Bytes
/
front-page.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
<?php get_header(); ?>
<div class="section site-body">
<div class="section-inner">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
<h1><?php the_title(); ?></h1>
<?php edit_post_link('<small>Edit this entry</small>','',''); ?>
<?php echo '<div class="featured-thumbnail">'; the_post_thumbnail(); echo '</div>'; ?>
<div class="page-content">
<?php the_content(); ?>
<?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?>
</div><!--#pageContent -->
<div class="page-meta">
<h3>Written by <?php the_author_posts_link() ?></h3>
<p>
Posted on <?php the_time('F j, Y'); ?> at <?php the_time() ?>
</p>
</div><!--#pageMeta-->
</div><!--#post-# .post-->
<?php comments_template( '', true ); ?>
<?php endwhile; ?>
<?php get_sidebar(); ?>
</div>
</div><!--#content-->
<?php get_footer(); ?>