forked from Gnuside/wp-green-golem-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-page.php
31 lines (27 loc) · 1.17 KB
/
content-page.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
<article id='article-full' class="post-<?php the_ID(); ?>" <?php post_class(); ?> >
<!-- / article title -->
<h2>
<span class='title'><?php the_title(); ?></span>
<!-- <span class='category'> </span> -->
<?php if ( 'post' == get_post_type() ) : ?>
<span class='creation-date'>
<?php the_date(); ?>
</span><!-- .creation-date -->
<?php endif; ?>
</h2>
<hr style='clear:both; visibility:hidden' />
<?php echo get_the_post_thumbnail($post->ID, array(450,450), array('class'=>'right last')); ?>
<?php the_content(); ?>
<div id='sharebox'>
<div class='addthis_toolbox addthis_default_style '>
<a class='addthis_button_facebook_like' fb:like:layout='button_count'></a>
<a class='addthis_button_tweet'
tw:related='<?php echo revenudebase_twitter_username(); ?>'
tw:via='<?php echo revenudebase_twitter_username(); ?>'></a>
<a class='addthis_button_google_plusone' g:plusone:size='medium'></a>
<!-- /%a{ :class=>"addthis_counter addthis_pill_style" } -->
<script src='http://s7.addthis.com/js/250/addthis_widget.js' type='text/javascript'></script>
</div>
</div>
<?php comments_template(); ?>
</article>