more fixes
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
4e6f8b8e44
commit
589166f76b
|
@ -93,7 +93,7 @@ $month['12'] = array('month' => 'December', 'days' => '31');
|
||||||
<div class="post-page">
|
<div class="post-page">
|
||||||
<?php while (have_posts()) : the_post() ?>
|
<?php while (have_posts()) : the_post() ?>
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
|
||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endwhile; ?>
|
<?php endwhile; ?>
|
||||||
|
|
|
@ -92,12 +92,12 @@ $month['12'] = array('month' => 'December', 'days' => '31');
|
||||||
|
|
||||||
<div class="post-page-head"></div>
|
<div class="post-page-head"></div>
|
||||||
<div class="post-page">
|
<div class="post-page">
|
||||||
<?php if (have_posts()): ?>
|
<?php while (have_posts()) : the_post() ?>
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
|
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
|
||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endwhile; ?>
|
||||||
|
|
||||||
<div class="archive-yearlist">|
|
<div class="archive-yearlist">|
|
||||||
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date ASC");
|
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date ASC");
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php get_sidebar('footer'); ?>
|
<?php get_sidebar('footer'); ?>
|
||||||
<p>
|
<p>
|
||||||
©<?php echo cp_copyright_year(); ?> <?php echo the_author_meta('firstname',0); echo " "; echo the_author_meta('lastname',0); ?>. <?php bloginfo('name') ?> is powered by <a href="http://wordpress.org/">WordPress</a> with <a href="http://comicpress.org/">ComicPress</a>
|
©<?php echo cp_copyright_year(); ?> <?php echo the_author_meta('firstname',1); echo " "; echo the_author_meta('lastname',1); ?>. <?php bloginfo('name') ?> is powered by <a href="http://wordpress.org/">WordPress</a> with <a href="http://comicpress.org/">ComicPress</a>
|
||||||
| Subscribe: <a href="<?php bloginfo('rss2_url') ?>">RSS Feed</a> | <a href="#outside" onclick="scrollup(); return false;">Back to Top ↑</a><br />
|
| Subscribe: <a href="<?php bloginfo('rss2_url') ?>">RSS Feed</a> | <a href="#outside" onclick="scrollup(); return false;">Back to Top ↑</a><br />
|
||||||
<!-- <?php echo get_num_queries() ?> queries. <?php timer_stop(1) ?> seconds. -->
|
<!-- <?php echo get_num_queries() ?> queries. <?php timer_stop(1) ?> seconds. -->
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -65,6 +65,9 @@
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
<?php the_content() ?>
|
<?php the_content() ?>
|
||||||
|
<?php if ('open' == $post->comment_status) {
|
||||||
|
comments_template('', true);
|
||||||
|
} ?>
|
||||||
<br class="clear-margins" />
|
<br class="clear-margins" />
|
||||||
</div>
|
</div>
|
||||||
<div class="post-page-foot"></div>
|
<div class="post-page-foot"></div>
|
||||||
|
|
|
@ -196,7 +196,9 @@ h3, h3 a {
|
||||||
#menubar {
|
#menubar {
|
||||||
background: url('images/menu.png');
|
background: url('images/menu.png');
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 1px solid #999;
|
border-width: 1px 1px 1px 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menunav {
|
#menunav {
|
||||||
|
@ -994,6 +996,7 @@ ul.children {
|
||||||
border: 1px solid #000;
|
border: 1px solid #000;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #000;
|
background: #000;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue