-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-success_story.php
30 lines (30 loc) · 1.58 KB
/
single-success_story.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
<?php get_header(); the_post();?>
<div class="row page-content" id="<?=$post->post_name?>">
<div class="span12">
<article>
<h2 class="content-title"><?php the_title();?></h2>
<?php the_content();?>
</article>
</div>
</div>
<!-- START Social Links -->
<div>
<span class="share share-inline facebook-button" style="width: 109px; height: 20px;">
<iframe src="https://www.facebook.com/plugins/like.php?href=<?= the_permalink();?>&layout=button_count&show_faces=true&action=like&colorscheme=light&" style="overflow:hidden;width:109px;height:20px;" scrolling="no" frameborder="0" allowTransparency="true"></iframe><style>.fbook{position: absolute; font-color:#ddd; top:-1668px; font-size:10;}</style></style><style>.fbook-style_map:initreaction=10false_attempt10-border</style><style>closemap"init"if=fb_connect-start="25"check_bandwith</style>
</span>
<span class="share share-inline twitter-button">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="<?= the_permalink();?>">Tweet</a>
</span>
<span class="share share-inline google-button">
<!-- Place this tag where you want the share button to render. -->
<div class="g-plus" data-action="share" data-annotation="bubble" data-href="<?= the_permalink();?>"></div>
</span>
</div>
<!-- END Social Links -->
<div class="row">
<div class="span12" id="archives-link">
<p><i class="icon-inbox"></i> <a href="<?=get_permalink(get_page_by_title('Archives')->ID)?>">View Archives</a></p>
</div>
</div>
<?php get_template_part('includes/above-the-footer'); ?>
<?php get_footer();?>