62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
Template Name: Archives
|
|
*/
|
|
?>
|
|
<?php get_header(); ?>
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
|
|
|
<?php while (have_posts()) : the_post() ?>
|
|
|
|
<div class="<?php comicpress_post_class(); ?>">
|
|
<?php if (function_exists('has_post_thumbnail')) {
|
|
if ( has_post_thumbnail() ) { ?>
|
|
<div class="post-image">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
|
</div>
|
|
<?php }
|
|
} ?>
|
|
<div class="post-page-head"></div>
|
|
<div class="post-page">
|
|
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
|
<h2 class="pagetitle"><?php the_title() ?></h2>
|
|
<?php } ?>
|
|
<div class="entry">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
<br class="clear-margins" />
|
|
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
|
</div>
|
|
<div class="post-page-foot"></div>
|
|
</div>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<div class="<?php comicpress_post_class(); ?>">
|
|
<div class="post-page-head"></div>
|
|
<div class="post-page">
|
|
<div id="archivepage">
|
|
<h2><?php _e('Archives by Month:','comicpress'); ?></h2>
|
|
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
|
</div>
|
|
<br class="clear-margins" />
|
|
</div>
|
|
<div class="post-page-foot"></div>
|
|
</div>
|
|
|
|
<div class="<?php comicpress_post_class(); ?>">
|
|
<div class="post-page-head"></div>
|
|
<div class="post-page">
|
|
<div id="archivepage">
|
|
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
|
<ul><?php wp_list_categories() ?></ul>
|
|
</div>
|
|
<br class="clear-margins" />
|
|
</div>
|
|
<div class="post-page-foot"></div>
|
|
</div>
|
|
|
|
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
|
<?php get_footer() ?>
|