Last change
on this file since 603 was
64,
checked in by toemon, 16 years ago
|
言語ファイルのドメイン名をkubilicからxpressに変更、及びpoを取り直して整理
|
File size:
705 bytes
|
Line | |
---|
1 | <?php
|
---|
2 | /*
|
---|
3 | Template Name: Archives
|
---|
4 | */
|
---|
5 | ?>
|
---|
6 |
|
---|
7 | <?php get_header(); ?>
|
---|
8 |
|
---|
9 | <div id="xpress_content" class="widecolumn">
|
---|
10 |
|
---|
11 | <div id="xpress_header">
|
---|
12 | <div id="xpress_headerimg">
|
---|
13 | <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
|
---|
14 | <div class="description"><?php bloginfo('description'); ?></div>
|
---|
15 | </div>
|
---|
16 | </div>
|
---|
17 |
|
---|
18 | <?php include (get_template_directory() . '/searchform.php'); ?>
|
---|
19 |
|
---|
20 | <h2><?php _e('Archives by Month:', 'xpress'); ?></h2>
|
---|
21 | <ul>
|
---|
22 | <?php wp_get_archives('type=monthly'); ?>
|
---|
23 | </ul>
|
---|
24 |
|
---|
25 | <h2><?php _e('Archives by Subject:', 'xpress'); ?></h2>
|
---|
26 | <ul>
|
---|
27 | <?php wp_list_categories(); ?>
|
---|
28 | </ul>
|
---|
29 |
|
---|
30 | </div>
|
---|
31 |
|
---|
32 | <?php get_footer(); ?>
|
---|
Note: See
TracBrowser
for help on using the repository browser.