XPressME Integration Kit

Trac

source: wp-content/themes/toemon/archives.php @ 828

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

取り敢えずインストールと表示が出来るようにした初期バージョン

File size: 707 bytes
Line 
1<?php
2/*
3Template 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:', 'kubrick'); ?></h2>
21        <ul>
22                <?php wp_get_archives('type=monthly'); ?>
23        </ul>
24
25        <h2><?php _e('Archives by Subject:', 'kubrick'); ?></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.