-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
54 lines (41 loc) · 1.77 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* @package WordPress
* @subpackage Tersus
*/
?>
<?php get_header(); ?>
<section id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php if(!has_post_format('aside') && !has_post_format('image')) { ?>
<p class="published" title="<?php the_time('c') ?>"><?php the_time(get_option('date_format')); ?></p>
<h2 class="entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php if(the_title( '', '', false ) !='') the_title_attribute(array('before' => '“','after' => '”')); else echo 'this post.';?>"><?php the_title(); ?></a></h2>
<?php }
the_content();
if(!has_post_format('aside') && !has_post_format('image')) {
?>
<h6>Author</h6>
<p class="vcard author"><cite class="fn"><a class="url" href="<?php the_author_meta('user_url') ?>" title="Visit the author’s site"><?php the_author_meta('display_name'); ?></a></cite></p>
<?php if (has_tag()) { ?>
<h6>Tags</h6>
<p><?php the_tags( '', ', ', '' ) ?></p>
<?php } ?>
<h6>Categories</h6>
<p><?php the_category( ', ' ) ?></p>
<?php } ?>
<p><a href="<?php the_permalink(); ?>#respond" title="Contribute to the discussion"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></a></p>
<?php edit_post_link('Edit', '<p>', '</p>'); ?>
</article>
<?php endwhile; ?>
<?php if (show_posts_link_nav()): ?>
<nav><?php next_posts_link('Older Posts'); delim_posts_link(); previous_posts_link('Newer Posts') ?></nav>
<?php endif; ?>
<?php else : ?>
<h2>Not found.</h2>
<p>Sorry, you seem to be looking for something that simply isn’t here.</p>
<?php endif; ?>
</section>
<?php get_sidebar(); ?>
<?php get_footer(); ?>