-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-content.php
More file actions
18 lines (17 loc) · 968 Bytes
/
single-content.php
File metadata and controls
18 lines (17 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="blog-post">
<a href="<?php the_permalink(); ?>"><h2 class="blog-post-title"><?php the_title(); ?></h2></a>
<div class="post-date">
<?php the_date(); ?>
</div>
<div class="post-share clearfix">
<!--TODO COLAB-2443: remove addthis-->
<a href="https://www.addthis.com/bookmark.php?v=250&username=climatecolab" class="addthis_button_compact" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>" addthis:description=""> <img src="<?php bloginfo('template_directory');?>/images/icon_share.png" height="23" alt="Share"> </a>
<script type="text/javascript">var addthis_config={data_track_clickback:true};</script>
<script type="text/javascript" src="https://s7.addthis.com/js/250/addthis_widget.js#username=climatecolab"></script>
</div>
<?php the_content(); ?>
<div class="post-author">
By <a href="#"><?php the_author(); ?></a>
</div>
<hr />
</div>