-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
executable file
·42 lines (25 loc) · 1.1 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
<?php get_header(); ?>
<div class="posts" role="main">
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="meta">
Posted on <?php the_time('F jS, Y') ?> under <?php the_category(', ') ?>.
<?php the_tags('Tags: ', ', ', ''); ?>
<a href="<?php comments_link(); ?>"><?php comments_number('No Comments','1 Comment','% Comments'); ?></a>
</div>
<?php the_post_thumbnail('thumbnail'); ?>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
<?php the_pagination(); ?>
<?php else : ?>
<article class="post">
<h2><?php _e('Not found!', 'base'); ?></h2>
<p><?php _e('Could not find the requested page. Use the navigation menu to find your target, or use the search box below:', 'base'); ?></p>
<?php get_search_form(); ?>
</article>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>