-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
21 lines (21 loc) · 1.06 KB
/
content.php
File metadata and controls
21 lines (21 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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_excerpt(); ?>
<a href="<?php the_permalink(); ?>">
<span>Read more about: <?php the_title(); ?> </span>
</a>
<br/>
<div class="post-author">
By <a href="#"><?php the_author(); ?></a>
</div>
<hr />
</div>