XPressME Integration Kit

Trac

source: trunk/wp-content/themes/xpress_default/index.php @ 140

Last change on this file since 140 was 140, checked in by toemon, 15 years ago

インデックスページのデザイン (XPressMEVer1.X)のデフォルトに近いテーマ)

File size: 3.4 KB
Line 
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                                &nbsp;( <?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(__('&laquo; Older Entries', 'xpress')) ?></div>
32                                        <div class="xpress-previous-posts-link">&nbsp;<?php previous_posts_link(__('Newer Entries &raquo;', 'xpress')) ?></div>
33                                <?php endif; ?>
34                        </div>
35                               
36                        <?php while (have_posts()) : the_post(); ?>
37
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 &raquo;') ); ?>
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 &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') );
60                                        ?>
61                                        </div>
62                                </div>
63
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(__('&laquo; Older Entries', 'xpress')) ?></div>
71                                        <div class="xpress-previous-posts-link">&nbsp;<?php previous_posts_link(__('Newer Entries &raquo;', 'xpress')) ?></div>
72                                <?php endif; ?>
73                        </div>
74                               
75                <?php else : ?>
76
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&#8217;t here.', 'xpress'); ?></p>
79                        <?php include (get_template_directory() . "/searchform.php"); ?>
80
81                <?php endif; ?>
82        </div>
83</div>
84<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?>
85<hr class="xpress-border">
86<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.