This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Echoes a pretty timestamp if the post is younger than max_days. | |
* Must be used inside the loop. | |
* | |
* Examples: | |
* - Posted 3 days ago | |
* - Posted 12 hours ago | |
* - Posted 5 minutes ago | |
* - Posted just now (less than a minute ago) | |
* - 2014-07-25 08:33:54 (post is older than $max_days) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="hidden-xs social-bar horizontal"> | |
<ul class="social-buttons"> | |
<li class="linkedin first"> | |
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url={articleUrl}&title={articleTitle}&summary={articleSummary}&source={articleSource}" title="Share on LinkedIn"><span class="fa fa-linkedin"></span></a> | |
</li> | |
<li class="twitter"> | |
<a href="#" title="Share on Twitter"><span class="fa fa-twitter"></span></a> | |
</li> | |
<li class="facebook"> | |
<a href="#" title="Share on Facebook"><span class="fa fa-facebook"></span></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.social-bar { | |
position: fixed; | |
left: 0; | |
top: 260px; | |
font-size: 1.5em; | |
z-index: 1000; | |
} | |
.social-bar.horizontal { | |
bottom: 0; |
NewerOlder