-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
34 lines (29 loc) · 1.09 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
<?php get_header(); ?>
<?php if( is_home() && false ){ ?>
<div id="welcome">
<?php dynamic_sidebar( 'homepage' ); ?>
</div>
<?php } ?>
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<div class="entry">
<div class="entry-header">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
</div>
<div class="meta">
<div class="inner"><span class="day-of-the-week"><?php the_time('l'); ?>,</span> <span class="date"><?php the_time('F jS Y'); ?></span></div>
</div>
<div class="entry-content">
<div class="inner"><?php the_excerpt(); ?></div>
</div>
<div class="entry-footer"></div>
</div>
<?php endwhile; ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link( '<span class="meta-nav">←</span> Older posts' ); ?> </div>
<div class="nav-next"><?php previous_posts_link( 'Newer posts <span class="meta-nav">→</span>' ); ?> </div>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>