comicpress-core/links.php

27 lines
445 B
PHP
Raw Normal View History

2009-06-13 11:58:02 +00:00
<?php
/*
Template Name: Links
*/
2009-07-24 17:34:57 +00:00
global $comicpress;
comicpress_init();
2009-06-13 11:58:02 +00:00
2009-07-24 17:34:57 +00:00
ob_start();
2009-06-13 11:58:02 +00:00
2009-07-24 17:34:57 +00:00
?>
<div class="post-page-head"></div>
<div class="post-page">
<h2 class="pagetitle"><?php the_title() ?></h2>
<ul>
<?php wp_list_bookmarks() ?>
</ul>
<br class="clear-margins" />
2009-06-13 11:58:02 +00:00
</div>
2009-07-24 17:34:57 +00:00
<div class="post-page-foot"></div>
<?php
$content = ob_get_clean();
2009-06-13 11:58:02 +00:00
2009-07-24 17:34:57 +00:00
include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']);
?>