forked from murtaugh/HTML5-Reset-WordPress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
41 lines (27 loc) · 955 Bytes
/
index.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
<?php
/**
* @package WordPress
* @subpackage HTML5-Reset-WordPress-Theme
* @since HTML5 Reset 2.0
*/
get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php posted_on(); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<footer class="postmetadata">
<?php the_tags(__('Tags: ','html5reset'), ', ', '<br />'); ?>
<?php _e('Posted in','html5reset'); ?> <?php the_category(', ') ?> |
<?php comments_popup_link(__('No Comments »','html5reset'), __('1 Comment »','html5reset'), __('% Comments »','html5reset')); ?>
</footer>
</article>
<?php endwhile; ?>
<?php post_navigation(); ?>
<?php else : ?>
<h2><?php _e('Nothing Found','html5reset'); ?></h2>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>