-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
executable file
·47 lines (33 loc) · 1.17 KB
/
single.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
<?php
/**
* @package WordPress
* @subpackage HTML5-Reset-WordPress-Theme
* @since HTML5 Reset 2.0
*/
get_header(); ?>
<div id="container" class="clearfix">
<div id="primary">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => __('Pages: ','html5reset'), 'next_or_number' => 'number')); ?>
</div>
<footer class="postmetadata">
<?php posted_on(); ?>
<span style="padding:0 10px;" > • </span>
<?php the_tags('', ' · ', ''); ?>
<span style="padding:0 10px;" > • </span>
<?php the_category(' · ') ?>
<span style="padding:0 10px;" > • </span>
<?php edit_post_link(__('Edit this entry','html5reset'),'','.'); ?>
</footer>
</article>
<?php comments_template(); ?>
<?php endwhile; endif; ?>
<?php post_navigation(); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>