comicpress-core/index.php

93 lines
3.2 KiB
PHP
Raw Normal View History

<?php
global $comicpress;
2009-06-13 11:58:02 +00:00
get_header();
2009-07-12 23:31:47 +00:00
$nav_comics = $comicpress->get_nav_comics();
$post = $nav_comics['last'];
?>
2009-06-13 11:58:02 +00:00
<?php if (!is_paged()) { ?>
<div id="comic-head"></div>
<div id="comic"><?php do_action('show_comic', null); ?></div>
<div id="comic-foot"></div>
<?php } ?>
<div id="content" class="narrowcolumn">
2009-06-13 11:58:02 +00:00
2009-07-12 23:31:47 +00:00
<?php if (!is_paged()) { ?>
<div class="post-comic-head"></div>
<div class="post-comic">
2009-07-12 23:31:47 +00:00
<?php include(dirname(__FILE__) . '/partials/nav.inc') ?>
<div class="comicdate">
<?php the_date('F jS, Y') ?>
</div>
<div class="clear"></div>
<?php if (get_option('comicpress-enable-storyline-support') == 1) { ?>
<ul class="storyline-cats"><li class="storyline-root"><?php the_category(' &raquo; </li><li>', multiple) ?></li></ul>
<?php } ?>
<h2>
2009-07-12 22:35:20 +00:00
<a href="<?php get_permalink($last_comic_post->ID) ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'comicpress'), get_the_title()) ?>"><?php the_title() ?></a>
</h2>
<div class="entry">
<?php the_content('&darr; Read the rest of this entry...') ?>
</div>
<?php the_transcript('styled') ?>
<div class="tags">
<?php the_tags('&#9492; Tags: ', ', ', ''); edit_post_link('Edit Post', ' [ ', ' ] ') ?>
</div>
<div class="comment-link">
<?php if ('open' == $post->comment_status) { comments_popup_link('&ldquo;Comment&rdquo;', '&ldquo;1 Comment&rdquo;', '&ldquo;% Comments&rdquo;'); } ?>
</div>
<br class="clear-margins" />
</div>
<div class="post-comic-foot"></div>
<?php } ?>
2009-06-13 11:58:02 +00:00
<div id="blogheader"><!-- This area can be used for a heading above your main page blog posts --></div>
2009-06-13 11:58:02 +00:00
<?php
$wp_query = new WP_Query();
$wp_query->query(
'showposts=' .
(int)$comicpress->comicpress_options['blogpost_count'] .
'&cat=-' .
$comicpress->comicpress_options['comic_category_id'] .
'&paged=' .
$paged
);
2009-06-13 11:58:02 +00:00
while ($wp_query->have_posts()) {
$wp_query->the_post() ?>
2009-06-13 11:58:02 +00:00
<div class="post-head"></div>
<div class="post" id="post-<?php the_ID() ?>">
<h3>
2009-07-12 22:35:20 +00:00
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'comicpress'), get_the_title()) ?>"><?php the_title() ?></a>
2009-06-13 11:58:02 +00:00
</h3>
<div class="postdate">
<?php the_time('F jS, Y') ?>
</div>
<div class="entry">
2009-07-12 22:35:20 +00:00
<?php the_content(__('&darr; Read the rest of this entry...', 'comicpress')) ?>
2009-06-13 11:58:02 +00:00
</div>
<div class="tags">
2009-07-12 22:35:20 +00:00
<?php the_tags(__('&#9492; Tags: ', 'comicpress'), ', ', ''); edit_post_link(__('Edit Post', 'comicpress'), ' [ ', ' ] ') ?>
2009-06-13 11:58:02 +00:00
</div>
<div class="comment-link">
2009-07-12 22:35:20 +00:00
<?php if ('open' == $post->comment_status) { comments_popup_link(__('&ldquo;Comment&rdquo;', 'comicpress'), __('&ldquo;1 Comment&rdquo;', 'comicpress'), __('&ldquo;% Comments&rdquo;', 'comicpress')); } ?>
2009-06-13 11:58:02 +00:00
</div>
<div class="clear-margins"><br /></div>
</div>
<div class="post-foot"></div>
<?php } ?>
2009-06-13 11:58:02 +00:00
<div class="pagenav">
2009-07-12 22:35:20 +00:00
<div class="pagenav-right"><?php previous_posts_link(__('Newer Entries &uarr;', 'comicpress')) ?></div>
<div class="pagenav-left"><?php next_posts_link(__('&darr; Previous Entries', 'comicpress')) ?></div>
2009-06-13 11:58:02 +00:00
<div class="clear"></div>
</div>
</div>
<?php include(dirname(__FILE__) . '/sidebar.php') ?>
2009-06-13 11:58:02 +00:00
<?php get_footer() ?>