diff options
author | xdite <xuite.joke@gmail.com> | 2011-10-09 16:29:02 +0800 |
---|---|---|
committer | xdite <xuite.joke@gmail.com> | 2011-10-09 16:36:53 +0800 |
commit | 294accde545a7213b274c5b625b44a17ed72e0f3 (patch) | |
tree | 80fb95c6b3073a96cab76a36327d79257838fcdb | |
parent | e4df98317ae07b2df8b6b00e2874742f218a70e8 (diff) | |
download | my_new_personal_website-294accde545a7213b274c5b625b44a17ed72e0f3.tar.xz my_new_personal_website-294accde545a7213b274c5b625b44a17ed72e0f3.zip |
facebook like option
-rw-r--r-- | .themes/classic/source/_includes/after_footer.html | 1 | ||||
-rw-r--r-- | .themes/classic/source/_includes/facebook_like.html | 8 | ||||
-rw-r--r-- | .themes/classic/source/_includes/post/sharing.html | 3 | ||||
-rw-r--r-- | _config.yml | 3 |
4 files changed, 15 insertions, 0 deletions
diff --git a/.themes/classic/source/_includes/after_footer.html b/.themes/classic/source/_includes/after_footer.html index 80a481eb..b17f5463 100644 --- a/.themes/classic/source/_includes/after_footer.html +++ b/.themes/classic/source/_includes/after_footer.html @@ -1,4 +1,5 @@ {% include disqus.html %} +{% include facebook_like.html %} {% include google_plus_one.html %} {% include twitter_sharing.html %} {% include google_analytics.html %} diff --git a/.themes/classic/source/_includes/facebook_like.html b/.themes/classic/source/_includes/facebook_like.html new file mode 100644 index 00000000..6c4c2788 --- /dev/null +++ b/.themes/classic/source/_includes/facebook_like.html @@ -0,0 +1,8 @@ +<div id="fb-root"></div> +<script>(function(d, s, id) { + var js, fjs = d.getElementsByTagName(s)[0]; + if (d.getElementById(id)) {return;} + js = d.createElement(s); js.id = id; + js.src = "//connect.facebook.net/en_US/all.js#appId=212934732101925&xfbml=1"; + fjs.parentNode.insertBefore(js, fjs); +}(document, 'script', 'facebook-jssdk'));</script> diff --git a/.themes/classic/source/_includes/post/sharing.html b/.themes/classic/source/_includes/post/sharing.html index f0f9b9db..e32500d0 100644 --- a/.themes/classic/source/_includes/post/sharing.html +++ b/.themes/classic/source/_includes/post/sharing.html @@ -5,4 +5,7 @@ {% 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> diff --git a/_config.yml b/_config.yml index f40ccf19..26881bc4 100644 --- a/_config.yml +++ b/_config.yml @@ -80,3 +80,6 @@ disqus_show_comment_count: false # Google Analytics google_analytics_tracking_id: + +# Facebook Like +facebook_like: true |