more fixes

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-08-27 09:47:33 -07:00
parent 4e6f8b8e44
commit 589166f76b
5 changed files with 11 additions and 5 deletions

View File

@ -93,7 +93,7 @@ $month['12'] = array('month' => 'December', 'days' => '31');
<div class="post-page">
<?php while (have_posts()) : the_post() ?>
<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(); ?>
</div>
<?php endwhile; ?>

View File

@ -92,12 +92,12 @@ $month['12'] = array('month' => 'December', 'days' => '31');
<div class="post-page-head"></div>
<div class="post-page">
<?php if (have_posts()): ?>
<?php while (have_posts()) : the_post() ?>
<div class="entry">
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
<?php the_content(); ?>
</div>
<?php endif; ?>
<?php endwhile; ?>
<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");

View File

@ -10,7 +10,7 @@
<?php } ?>
<?php get_sidebar('footer'); ?>
<p>
&copy;<?php echo cp_copyright_year(); ?> <?php echo the_author_meta('firstname',0); echo "&nbsp;"; 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>
&copy;<?php echo cp_copyright_year(); ?> <?php echo the_author_meta('firstname',1); echo "&nbsp;"; 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 &uarr;</a><br />
<!-- <?php echo get_num_queries() ?> queries. <?php timer_stop(1) ?> seconds. -->
</p>

View File

@ -65,6 +65,9 @@
<div class="clear"></div>
</div>
<?php the_content() ?>
<?php if ('open' == $post->comment_status) {
comments_template('', true);
} ?>
<br class="clear-margins" />
</div>
<div class="post-page-foot"></div>

View File

@ -196,7 +196,9 @@ h3, h3 a {
#menubar {
background: url('images/menu.png');
text-align: left;
border: 1px solid #999;
border-width: 1px 1px 1px 0;
border-style: solid;
border-color: #999;
}
#menunav {
@ -994,6 +996,7 @@ ul.children {
border: 1px solid #000;
overflow: hidden;
background: #000;
text-align: center;
}