mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
26 lines
No EOL
848 B
HTML
26 lines
No EOL
848 B
HTML
<hr />
|
|
<div class="well well-sm"> <!-- Social media sharing buttons -->
|
|
{% if TWITTER_USERNAME %}
|
|
<!-- Twitter -->
|
|
<a href="https://twitter.com/share" class="twitter-share-button"
|
|
data-via="{{ TWITTER_USERNAME }}" >Tweet</a>
|
|
{% endif %}
|
|
|
|
<!-- Google+ -->
|
|
<div class="g-plus" data-action="share" data-annotation="bubble"></div>
|
|
|
|
<div class="g-plusone" data-size="medium"></div>
|
|
|
|
<!-- Facebook -->
|
|
<div class="fb-like"
|
|
{% if page %}
|
|
data-href="{{ SITEURL }}/{{ page.url }}"
|
|
{% else %}
|
|
data-href="{{ SITEURL }}/{{ article.url }}"
|
|
{% endif %}
|
|
data-layout="button_count"
|
|
data-action="like" data-show-faces="true"
|
|
data-share="true">
|
|
</div>
|
|
|
|
</div> <!-- /Social media sharing buttons --> |