initial commit
This commit is contained in:
32
archives.php
Normal file
32
archives.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/* Template Name: Archvies
|
||||
/* Template to display archives. */
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<div class="post">
|
||||
|
||||
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||
|
||||
<?php the_content(); ?>
|
||||
|
||||
<h2>Browse by date:</h2>
|
||||
|
||||
<?php arl_kottke_archives(); ?>
|
||||
|
||||
<h2>Browse by subject:</h2>
|
||||
|
||||
<ul class="taxonomy"><?php wp_list_categories('title_li=');?></ul>
|
||||
|
||||
<h2>If all else fails, try searching for it...</h2>
|
||||
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
</div><!--.post-->
|
||||
|
||||
<?php endwhile; // end of the loop. ?>
|
||||
|
||||
<?php get_footer(); ?>
|
Reference in New Issue
Block a user