为Octopress侧边栏增加访客地图
效果图我的Blog右下角那个旋转的3D地图,可以显示地域和访客的数量.
Widget获取地址在这里:
https://www.revolvermaps.com/?target=setupgl
可以根据自己的喜好设定.
分两步添加到Octopress的侧边栏中:
1,获取code,并创建文件
source/_includes/custom/asides/earth.html
1
2
3
4
<section>
<h1>访客地图</h1>
<script type="text/javascript" src="//ra.revolvermaps.com/0/0/6.js?i=0qld21p02br&m=0&s=220&c=ff0000&cr1=ffffff&f=arial&l=0" async="async"></script>
</section>
2,修改配置文件
_config.yml
1
2
default_asides: [custom/asides/about.html,asides/recent_posts.html, asides/github.html, asides/delicious.html, asides/pinboard.html, asides/googleplus.html,asides/category_list.html,custom/asides/recent_comments.html,custom/asides/earth.html]
This post is licensed under
CC BY 4.0
by the author.
Comments powered by Disqus.