-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontent-comic.php
56 lines (50 loc) · 2.66 KB
/
content-comic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
$next_comic = ComicManager::get_next_comic();
$next_comic_url = ComicManager::get_comic_url( $next_comic );
?>
<a name="comic"></a>
<div id="mm-comic" <?php post_class(); ?>>
<nav class="mm-nav-comic">
<?php
echo ComicManager::get_previous_comic_link( '«' );
echo ComicManager::get_next_comic_link( '»' );
?>
</nav>
<div class="mm-image-comic">
<?php if ( $next_comic_url ) : ?>
<a href="<?php echo esc_url( $next_comic_url ); ?>" title="<?php echo esc_attr( sprintf( __( 'View next comic: %s' ), $next_comic->post_title ) ); ?>">
<?php endif; ?>
<?php the_post_thumbnail( 'full', array( 'title' => '' ) ); ?>
<?php if ( $next_comic_url ) : ?>
</a>
<?php endif; ?>
</div>
<div class="mm-content-comic">
<?php the_content(); ?>
</div>
<?php get_template_part( 'meta', 'comic' ); ?>
<?php /*
<div>
<nav class="mm-comic-series-nav">
<span class="mm-comic-series-nav-link previous"><!--<a href="#" rel="previous">Previous Case</a>--></span>
<span class="mm-comic-series-nav-link next"><!--<a href="#" rel="next">Next Case</a>--></span>
</nav>
</div>
*/ ?>
<div>
<nav class="mm-nav-comic">
<?php
echo ComicManager::get_previous_comic_link( '«' );
?><span class="mm-comic-series-nav-link first"><?php echo ComicManager::get_first_comic_link( 'Back to the beginning' ); ?></span><?php
echo ComicManager::get_next_comic_link( '»' );
?>
</nav>
</div>
</div>
<!-- Project Wonderful Ad Box Code -->
<div style="text-align:center;"><div style="display:inline-block;" id="pw_adbox_66155_5_0"></div></div>
<script type="text/javascript"></script>
<noscript><div style="text-align:center;"><div style="display:inline-block;"><map name="admap66155" id="admap66155"><area href="http://www.projectwonderful.com/out_nojs.php?r=0&c=0&id=66155&type=5" shape="rect" coords="0,0,728,90" title="" alt="" target="_blank" /></map>
<table cellpadding="0" cellspacing="0" style="width:728px;border-style:none;background-color:#504E64;"><tr><td><img src="http://www.projectwonderful.com/nojs.php?id=66155&type=5" style="width:728px;height:90px;border-style:none;" usemap="#admap66155" alt="" /></td></tr><tr><td style="background-color:#504E64;" colspan="1"><center><a style="font-size:10px;color:#C4C3D5;text-decoration:none;line-height:1.2;font-weight:bold;font-family:Tahoma, verdana,arial,helvetica,sans-serif;text-transform: none;letter-spacing:normal;text-shadow:none;white-space:normal;word-spacing:normal;" href="http://www.projectwonderful.com/advertisehere.php?id=66155&type=5" target="_blank">Ads by Project Wonderful! Your ad here, right now: $0.02</a></center></td></tr></table></div></div>
</noscript>
<!-- End Project Wonderful Ad Box Code -->