Created
March 4, 2012 11:52
-
-
Save programus/1972657 to your computer and use it in GitHub Desktop.
sharing.html with weibo share button and the config file
This file contains 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
# Please refer to http://weibo.com/tool/weiboshow to get your uid and verifier. | |
weibo_uid: 1098907490 | |
weibo_verifier: abd54ad9 | |
weibo_fansline: 0 # How many lines for the fan list | |
weibo_show: true # Whether you want your weibo content to be shown | |
weibo_pic: true # Whether you want the pictures in weibo to be shown | |
weibo_skin: 10 # Please refer to http://weibo.com/tool/weiboshow | |
weibo_share: true # Whether show the sharing button |
This file contains 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="sharing"> | |
{% if site.weibo_share %} | |
<span> | |
<iframe | |
width="86" | |
scrolling="no" | |
height="16" | |
frameborder="0" | |
src= | |
"http://hits.sinajs.cn/A1/weiboshare.html?url={{ site.url }}{{ page.url }}&type=6&{% if site.weibo_uid %}ralateUid={{ site.weibo_uid }}&{% endif %}language=zh_cn" allowtransparency="true"> | |
</iframe> | |
</span> | |
{% endif %} | |
{% if site.twitter_tweet_button %} | |
<a href="http://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-via="{{ site.twitter_user }}" data-counturl="{{ site.url }}{{ page.url }}" >Tweet</a> | |
{% endif %} | |
{% if site.google_plus_one %} | |
<div class="g-plusone" data-size="{{ site.google_plus_one_size }}"></div> | |
{% endif %} | |
{% if site.facebook_like %} | |
<div class="fb-like" data-send="true" data-width="450" data-show-faces="false"></div> | |
{% endif %} | |
</div> | |
<hr style="border-bottom:1px dotted #bdbabd;height:1px;border-top:0px;border-left:0px;border-right:0px;" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment