-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
50 lines (41 loc) · 3.1 KB
/
single.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
<?php get_header(); ?>
<!-- Begin #colLeft -->
<div id="colLeft">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="postItem">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="meta">
<?php the_time('M j, Y') ?> //
<?php _e("by", "boldy-plus"); ?>
<span class="author"><?php the_author_link(); ?></span> //
<?php the_category(', ') ?> //
<?php comments_popup_link(__('No comments', 'boldy-plus'), __('1 comment', 'boldy-plus'), __('% comments', 'boldy-plus')); ?>
</div>
<?php the_content(__('Read more')); ?>
<div class="postTags"><?php the_tags(); ?></div>
<?php if (get_option('boldy_share_shortcut') != "no") : ?>
<div id="shareLinks">
<a href="#" class="share">[+] Share & Bookmark</a>
<span id="icons">
<a href="http://twitter.com/home/?status=<?php the_title(); ?> : <?php the_permalink(); ?>" title="<?php _e("Tweet this!", "boldy-plus"); ?>">
<!--<img src="<?php bloginfo('template_directory'); ?>/images/twitter.png" alt="Tweet this!" />-->• Twitter</a>
<a href="http://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&amp;title=<?php the_title(); ?>" title="<?php _e("StumbleUpon", "boldy-plus"); ?>">
<!--<img src="<?php bloginfo('template_directory'); ?>/images/stumbleupon.png" alt="StumbleUpon" />-->• StumbleUpon</a>
<a href="http://digg.com/submit?phase=2&amp;url=<?php the_permalink(); ?>&amp;title=<?php the_title(); ?>" title="<?php _e("Digg this!", "boldy-plus"); ?>">
<!--<img src="<?php bloginfo('template_directory'); ?>/images/digg.png" alt="Digg This!" />-->• Digg</a>
<a href="http://del.icio.us/post?url=<?php the_permalink(); ?>&amp;title=<?php the_title(); ?>" title="<?php _e("Bookmark on Delicious", "boldy-plus"); ?>">
<!--<img src="<?php bloginfo('template_directory'); ?>/images/delicious.png" alt="Bookmark on Delicious" />-->• Delicious</a>
<a href="http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&amp;t=<?php the_title(); ?>" title="<?php _e("Share on Facebook", "boldy-plus"); ?>">
<!--<img src="<?php bloginfo('template_directory'); ?>/images/facebook.png" alt="Share on Facebook" id="sharethis-last" />-->• Facebook</a>
</span>
</div>
<?php endif; ?>
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<p><?php _e("Sorry, but you are looking for something that isn't here.", "boldy-plus"); ?></p>
<?php endif; ?>
</div>
<!-- End #colLeft -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>