【像黑客一样写博客之九】微博访客

原创作品,转载请标明http://blog.csdn.net/jackystudio/article/details/16877431


这节介绍如何往边栏添加新浪微博和进行访客统计。


1.新浪微博


1.1.创建微博页面

进入Octopress\source\_includes\custom\asides,创建weibo.html,添加如下代码

[html]  view plain copy
  1. {% if site.weibo_uid %}  
  2. <section>  
  3.   <h1>Sina Weibo</h1>  
  4.   <ul id="weibo">  
  5.     <li>  
  6.       <iframe   
  7.         width="100%"   
  8.         height="450"   
  9.         class="share_self"   
  10.         frameborder="0"   
  11.         scrolling="no"   
  12.         src="http://widget.weibo.com/weiboshow/index.php?width=0&height=450&fansRow={{site.weibo_fansline}}&ptype={% if site.weibo_pic %}1{% else %}0{% endif %}&speed=0&skin={{weibo_skin}}&isTitle=0&noborder=1&isWeibo={% if site.weibo_show %}1{% else %}0{% endif %}&isFans={% if site.weibo_showfans %}1{% else %}0{% endif %}&uid={{site.weibo_uid}}&verifier={{site.weibo_verifier}}">  
  13.       </iframe>  
  14.     </li>  
  15.   </ul>  
  16. </section>  
  17. {% endif %}  


1.2.设置微博参数

进入Octopress目录,打开_config.yml,添加如下代码

[cpp]  view plain copy
  1. # Weibo  
  2. # Please refer to http://weibo.com/tool/weiboshow to get your uid and verifier.   
  3. weibo_uid: 1307211523          #WeiBo uid  
  4. weibo_verifier: 3619ee9c        #WeiBo verifier  
  5. weibo_showfans: false            #showfans  
  6. weibo_fansline: 0                    #fansline  
  7. weibo_show: true                    #show weibo  
  8. weibo_pic: true                        #show pic  
  9. weibo_skin: 10                        #skin  
这里的uid和verifier是我自己的,替换成你的就行了,至于其他参数的含义,请参照http://weibo.com/tool/weiboshow


1.3.添加到边栏

同样在_config.yml,在default_asides一栏中添加

[cpp]  view plain copy
  1. default_asides: [..., custom/asides/weibo.html]   

1.4.生成页面,推送

[cpp]  view plain copy
  1. rake generate  
  2. rake deploy  
这里没有预览是因为新浪微博秀在预览中看不到,只能deploy后看到,并且要第一次要刷新才看得到。

打开主页http://geekjacky.github.io/,如下


【像黑客一样写博客之九】微博访客_第1张图片


1.5.推送source分支

[cpp]  view plain copy
  1. git add .  
  2. git commit -m "添加新浪微博"  
  3. git push origin source  

2.访客统计

访客统计的代码有很多,Octopress内置了google的统计,当然也可以选用百度等等,这里采用的是Flag Counter的代码,就是很熟悉的上面布满小国旗的那种。

官网在此http://flagcounter.com/


2.1.获取代码

进入官网,选取你要的款式,获取代码。


2.2.创建flag_counter页面

进入Octopress\source\_includes\custom\asides,创建flag_counter.html,添加如下代码,中间部分替换成你获取的代码

[html]  view plain copy
  1.  {% if site.flag_count %}  
  2. <section>  
  3. <h1>Visitor</h1>  
  4. <div>  
  5.     <p></p>  
  6.     <center>  
  7.     <a href="http://info.flagcounter.com/3pF8"><img src="http://s08.flagcounter.com/count/3pF8/bg_FFFFFF/txt_000000/border_CCCCCC/columns_3/maxflags_12/viewers_3/labels_0/pageviews_1/flags_0/" alt="Flag Counter" border="0"></a>  
  8.     </center>  
  9. </div>  
  10. </section>  
  11. {% endif %}  

2.3.设置开关

进入Octopress目录,打开_config.yml,添加如下代码

[cpp]  view plain copy
  1. #flag_count  
  2. flag_count: true  


2.4.添加到边栏

同样在_config.yml,在default_asides一栏中添加

[cpp]  view plain copy
  1. default_asides: [..., custom/asides/flag_counter.html]   

2.5.生成页面,推送

[cpp]  view plain copy
  1. rake generate  
  2. rake preview  
  3. rake deploy  
打开页面http://geekjacky.github.io/,如下


【像黑客一样写博客之九】微博访客_第2张图片


2.6.推送source分支

[cpp]  view plain copy
  1. git add .  
  2. git commit -m "添加flag_counter"  
  3. git push origin source  


当然Octopress还有很多插件,使用原理也都差不多,可以参见Octopress的github wiki:https://github.com/imathis/octopress/wiki/3rd-party-plugins

你可能感兴趣的:(新浪微博,访客统计)