Changeset 140 for trunk/wp-content/themes/xpress_default/index.php
- Timestamp:
- Mar 29, 2009, 1:21:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/xpress_default/index.php
r96 r140 1 1 <?php get_header(); ?> 2 <div id="xpress_wrap"> 3 <?php 4 if(xpress_is_theme_sidebar_disp()) { 5 echo '<div id="xpress_content" class="narrowcolumn">'; 6 } else { 7 echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 8 } 9 ?> 10 <div class="xpress-header-bar"> 11 <div class="xpress-header-title"> 12 <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> 13 </div> 14 <div class="xpress-conditional-title"> 15 ( <?php xpress_conditional_title();?> ) 16 </div> 17 <div class="xpress-description"> 18 <?php bloginfo('description'); ?> 19 </div> 20 <div class="xpress-operation-link"> 21 <a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a> 22 <?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?> 23 </div> 24 </div> 25 <hr class="xpress-border"> 26 <?php if (have_posts()) : ?> 27 <div class="xpress-navi-bar"> 28 <?php if(function_exists('wp_pagenavi')) : ?> 29 <div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div> 30 <?php else : ?> 31 <div class="xpress-next-posts-link"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div> 32 <div class="xpress-previous-posts-link"> <?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div> 33 <?php endif; ?> 34 </div> 35 36 <?php while (have_posts()) : the_post(); ?> 2 37 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 »') ); ?> 38 <div class="xpress-post" id="post-<?php the_ID(); ?>"> 39 <div class ="xpress-post-header"> 40 <?php if (function_exists('hotDates')) { hotDates(); }?> 41 <div class ="xpress-post-title"> 42 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> 43 </div> 44 </div> 45 <div class="xpress-post-entry"> 46 <?php xpress_the_content(__('Read the rest of this entry »') ); ?> 47 </div> 48 <div class ="xpress-post-footer"> 49 <?php 50 the_time('Y/m/d l'); 51 echo ' - '; 52 the_author_posts_link(); 53 echo ' (' . xpress_post_views_count($post->ID,__('Views :%d', 'xpress'),false) . ')'; 54 echo ' | '; 55 // echo the_tags(__('Tags:', 'xpress') . ' ', ', ', ' | '); 56 printf(__('Posted in %s', 'xpress'), get_the_category_list(', ')); 57 echo ' | '; 58 edit_post_link(__('Edit', 'xpress'), '', ' | '); 59 comments_popup_link(__('No Comments »', 'xpress'), __('1 Comment »', 'xpress'), __('% Comments »', 'xpress'), '', __('Comments Closed', 'xpress') ); 60 ?> 61 </div> 33 62 </div> 34 63 35 <p class="postmetadata"><!-- Post author start -->36 <!-- Post author end -->37 <?php38 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)?>64 <?php endwhile; ?> 65 66 <div class="xpress-navi-bar"> 67 <?php if(function_exists('wp_pagenavi')) : ?> 68 <div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div> 69 <?php else : ?> 70 <div class="xpress-next-posts-link"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div> 71 <div class="xpress-previous-posts-link"> <?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div> 72 <?php endif; ?> 73 </div> 74 75 <?php else : ?> 47 76 48 </div> 77 <h2 class="center"><?php _e('Not Found', 'xpress'); ?></h2> 78 <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'xpress'); ?></p> 79 <?php include (get_template_directory() . "/searchform.php"); ?> 49 80 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 81 <?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 82 </div> 70 </div> 71 72 <?php get_sidebar(); ?> 73 83 </div> 84 <?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 85 <hr class="xpress-border"> 74 86 <?php get_footer(); ?>
Note: See TracChangeset
for help on using the changeset viewer.