20 lines
921 B
PHP
20 lines
921 B
PHP
|
<div class="post-head"></div>
|
||
|
<div class="post" id="post-<?php the_ID() ?>">
|
||
|
<h3>
|
||
|
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'comicpress'), get_the_title()) ?>"><?php the_title() ?></a>
|
||
|
</h3>
|
||
|
<div class="postdate">
|
||
|
<?php the_time('F jS, Y') ?>
|
||
|
</div>
|
||
|
<div class="entry">
|
||
|
<?php the_content(__('↓ Read the rest of this entry...', 'comicpress')) ?>
|
||
|
</div>
|
||
|
<div class="tags">
|
||
|
<?php the_tags(__('└ Tags: ', 'comicpress'), ', ', ''); edit_post_link(__('Edit Post', 'comicpress'), ' [ ', ' ] ') ?>
|
||
|
</div>
|
||
|
<div class="comment-link">
|
||
|
<?php if ('open' == $post->comment_status) { comments_popup_link(__('“Comment”', 'comicpress'), __('“1 Comment”', 'comicpress'), __('“% Comments”', 'comicpress')); } ?>
|
||
|
</div>
|
||
|
<div class="clear-margins"><br /></div>
|
||
|
</div>
|
||
|
<div class="post-foot"></div>
|