1 | <?php get_header(); ?>
|
---|
2 |
|
---|
3 | <div id="xpress_wrap">
|
---|
4 |
|
---|
5 | <?php if(xpress_is_theme_sidebar_disp()) : ?>
|
---|
6 |
|
---|
7 | <div id="xpress_content" class="narrowcolumn">
|
---|
8 |
|
---|
9 | <?php else : ?>
|
---|
10 |
|
---|
11 | <div id="xpress_content" class="narrowcolumn_nonside">
|
---|
12 |
|
---|
13 | <?php endif; ?>
|
---|
14 |
|
---|
15 | <div id="xpress_header">
|
---|
16 | <div id="xpress_headerimg">
|
---|
17 | <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
|
---|
18 | <div class="description"><?php bloginfo('description'); ?></div>
|
---|
19 | </div>
|
---|
20 | </div>
|
---|
21 |
|
---|
22 | <?php if (have_posts()) : ?>
|
---|
23 |
|
---|
24 | <?php while (have_posts()) : the_post(); ?>
|
---|
25 |
|
---|
26 | <div class="post" id="post-<?php the_ID(); ?>">
|
---|
27 | <?php if (function_exists('hotDates')) { hotDates(); }?>
|
---|
28 | <h2><a href="<?php the_permalink() ?>" rel="bookmark" <?php if(function_exists('the_title_attribute')) : ?> title=' <?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>'<?php endif; ?>><?php the_title(); ?></a></h2>
|
---|
29 | <small><?php the_time(__('F jS, Y', 'xpress')) ?> <!-- by <?php the_author() ?> --></small>
|
---|
30 |
|
---|
31 | <div class="entry">
|
---|
32 | <?php xpress_the_content(__('Read the rest of this entry »') ); ?>
|
---|
33 | </div>
|
---|
34 |
|
---|
35 | <p class="postmetadata"><!-- Post author start -->
|
---|
36 | <!-- Post author end -->
|
---|
37 | <?php
|
---|
38 | if(function_exists('the_tags'))
|
---|
39 | echo the_tags(__('Tags:', 'xpress') . ' ', ', ', '<br />');
|
---|
40 | printf(__('Posted in %s', 'xpress'), get_the_category_list(', '));
|
---|
41 | echo ' | ';
|
---|
42 | edit_post_link(__('Edit', 'xpress'), '', ' | ');
|
---|
43 | comments_popup_link(__('No Comments »', 'xpress'), __('1 Comment »', 'xpress'), __('% Comments »', 'xpress'), '', __('Comments Closed', 'xpress') );
|
---|
44 | ?>
|
---|
45 | </p>
|
---|
46 | <?php xpress_post_views_count($post->ID,__('Views :%d', 'xpress'),true) ?>
|
---|
47 |
|
---|
48 | </div>
|
---|
49 |
|
---|
50 | <?php endwhile; ?>
|
---|
51 | <?php if(function_exists('wp_pagenavi')) : ?>
|
---|
52 | <div class="xpress_pagenavi">
|
---|
53 | <?php wp_pagenavi(); ?>
|
---|
54 | </div>
|
---|
55 | <?php else : ?>
|
---|
56 | <div class="xpress_index_navigation">
|
---|
57 | <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div>
|
---|
58 | <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div>
|
---|
59 | </div>
|
---|
60 | <?php endif; ?>
|
---|
61 | <?php else : ?>
|
---|
62 |
|
---|
63 | <h2 class="center"><?php _e('Not Found', 'xpress'); ?></h2>
|
---|
64 | <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'xpress'); ?></p>
|
---|
65 | <?php include (get_template_directory() . "/searchform.php"); ?>
|
---|
66 |
|
---|
67 | <?php endif; ?>
|
---|
68 |
|
---|
69 | </div>
|
---|
70 | </div>
|
---|
71 |
|
---|
72 | <?php get_sidebar(); ?>
|
---|
73 |
|
---|
74 | <?php get_footer(); ?>
|
---|