-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.php
25 lines (25 loc) · 834 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
<?php get_header(); ?>
<div class="right">
<?php if (have_posts()): ?>
<ul data-role="listview" data-inset="true"<?php jqmobile_ui('post');?>>
<?php while (have_posts()) : the_post(); ?>
<li<?php if(is_sticky()) {jqmobile_ui('sticky');} ?>>
<a href="<?php the_permalink() ?>">
<p class="ui-li-aside"><?php the_time('Y-m-d'); ?></p>
<h3><?php the_title(); ?></h3>
<p><strong><?php the_author(); ?></strong></p>
<div><?php the_excerpt(); ?></div>
<?php if (comments_open()): ?>
<span class="ui-li-count"><?php comments_number('0', '1', '%' );?></span>
<?php endif; ?>
</a>
</li>
<?php endwhile; ?>
</ul>
<?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
<?php else: ?>
<h2>Not Found</h2>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>