gitextract_e71ipyj3/ ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .hound.yml ├── .javascript_ignore ├── .jshintrc ├── .stylintrc ├── .travis.yml ├── LICENSE ├── README.cn.md ├── README.md ├── _config.yml ├── bower.json ├── gulpfile.coffee ├── languages/ │ ├── de.yml │ ├── default.yml │ ├── en.yml │ ├── fr-FR.yml │ ├── id.yml │ ├── it.yml │ ├── ja.yml │ ├── ko.yml │ ├── nl-NL.yml │ ├── pt-BR.yml │ ├── pt.yml │ ├── ru.yml │ ├── vi.yml │ ├── zh-Hans.yml │ ├── zh-hk.yml │ └── zh-tw.yml ├── layout/ │ ├── _custom/ │ │ ├── header.swig │ │ └── sidebar.swig │ ├── _layout.swig │ ├── _macro/ │ │ ├── post-collapse.swig │ │ ├── post-copyright.swig │ │ ├── post.swig │ │ ├── reward.swig │ │ ├── sidebar.swig │ │ └── wechat-subscriber.swig │ ├── _partials/ │ │ ├── comments.swig │ │ ├── footer.swig │ │ ├── head/ │ │ │ ├── custom-head.swig │ │ │ └── external-fonts.swig │ │ ├── head.swig │ │ ├── header.swig │ │ ├── page-header.swig │ │ ├── pagination.swig │ │ ├── search/ │ │ │ ├── localsearch.swig │ │ │ ├── swiftype.swig │ │ │ └── tinysou.swig │ │ ├── search.swig │ │ └── share/ │ │ ├── add-this.swig │ │ ├── baidushare.swig │ │ ├── duoshuo_share.swig │ │ └── jiathis.swig │ ├── _scripts/ │ │ ├── boostrap.swig │ │ ├── commons.swig │ │ ├── pages/ │ │ │ └── post-details.swig │ │ ├── schemes/ │ │ │ ├── gemini.swig │ │ │ ├── mist.swig │ │ │ ├── muse.swig │ │ │ └── pisces.swig │ │ └── vendors.swig │ ├── _third-party/ │ │ ├── analytics/ │ │ │ ├── analytics-with-widget.swig │ │ │ ├── application-insights.swig │ │ │ ├── baidu-analytics.swig │ │ │ ├── busuanzi-counter.swig │ │ │ ├── cnzz-analytics.swig │ │ │ ├── facebook-sdk.swig │ │ │ ├── firestore.swig │ │ │ ├── google-analytics.swig │ │ │ ├── index.swig │ │ │ ├── lean-analytics.swig │ │ │ ├── tencent-analytics.swig │ │ │ ├── tencent-mta.swig │ │ │ └── vkontakte-api.swig │ │ ├── comments/ │ │ │ ├── changyan.swig │ │ │ ├── disqus.swig │ │ │ ├── duoshuo.swig │ │ │ ├── gitment.swig │ │ │ ├── hypercomments.swig │ │ │ ├── index.swig │ │ │ ├── livere.swig │ │ │ ├── valine.swig │ │ │ └── youyan.swig │ │ ├── duoshuo-hot-articles.swig │ │ ├── exturl.swig │ │ ├── mathjax.swig │ │ ├── needsharebutton.swig │ │ ├── rating.swig │ │ ├── schedule.swig │ │ ├── scroll-cookie.swig │ │ ├── search/ │ │ │ ├── algolia-search/ │ │ │ │ ├── assets.swig │ │ │ │ └── dom.swig │ │ │ ├── index.swig │ │ │ ├── localsearch.swig │ │ │ └── tinysou.swig │ │ └── seo/ │ │ └── baidu-push.swig │ ├── archive.swig │ ├── category.swig │ ├── index.swig │ ├── page.swig │ ├── post.swig │ ├── schedule.swig │ └── tag.swig ├── package.json ├── scripts/ │ ├── merge-configs.js │ ├── merge.js │ └── tags/ │ ├── button.js │ ├── center-quote.js │ ├── exturl.js │ ├── full-image.js │ ├── group-pictures.js │ ├── label.js │ ├── lazy-image.js │ ├── note.js │ └── tabs.js ├── source/ │ ├── css/ │ │ ├── _common/ │ │ │ ├── components/ │ │ │ │ ├── back-to-top-sidebar.styl │ │ │ │ ├── back-to-top.styl │ │ │ │ ├── buttons.styl │ │ │ │ ├── comments.styl │ │ │ │ ├── components.styl │ │ │ │ ├── footer/ │ │ │ │ │ └── footer.styl │ │ │ │ ├── header/ │ │ │ │ │ ├── header.styl │ │ │ │ │ ├── headerband.styl │ │ │ │ │ ├── menu.styl │ │ │ │ │ ├── site-meta.styl │ │ │ │ │ └── site-nav.styl │ │ │ │ ├── highlight/ │ │ │ │ │ ├── diff.styl │ │ │ │ │ ├── highlight.styl │ │ │ │ │ └── theme.styl │ │ │ │ ├── pages/ │ │ │ │ │ ├── archive.styl │ │ │ │ │ ├── categories.styl │ │ │ │ │ ├── pages.styl │ │ │ │ │ ├── post-detail.styl │ │ │ │ │ └── schedule.styl │ │ │ │ ├── pagination.styl │ │ │ │ ├── post/ │ │ │ │ │ ├── post-button.styl │ │ │ │ │ ├── post-collapse.styl │ │ │ │ │ ├── post-copyright.styl │ │ │ │ │ ├── post-eof.styl │ │ │ │ │ ├── post-expand.styl │ │ │ │ │ ├── post-gallery.styl │ │ │ │ │ ├── post-meta.styl │ │ │ │ │ ├── post-nav.styl │ │ │ │ │ ├── post-reward.styl │ │ │ │ │ ├── post-rtl.styl │ │ │ │ │ ├── post-tags.styl │ │ │ │ │ ├── post-title.styl │ │ │ │ │ ├── post-type.styl │ │ │ │ │ ├── post-widgets.styl │ │ │ │ │ └── post.styl │ │ │ │ ├── sidebar/ │ │ │ │ │ ├── sidebar-author-links.styl │ │ │ │ │ ├── sidebar-author.styl │ │ │ │ │ ├── sidebar-blogroll.styl │ │ │ │ │ ├── sidebar-dimmer.styl │ │ │ │ │ ├── sidebar-feed-link.styl │ │ │ │ │ ├── sidebar-nav.styl │ │ │ │ │ ├── sidebar-toc.styl │ │ │ │ │ ├── sidebar-toggle.styl │ │ │ │ │ ├── sidebar.styl │ │ │ │ │ └── site-state.styl │ │ │ │ ├── tag-cloud.styl │ │ │ │ ├── tags/ │ │ │ │ │ ├── blockquote-center.styl │ │ │ │ │ ├── exturl.styl │ │ │ │ │ ├── full-image.styl │ │ │ │ │ ├── group-pictures.styl │ │ │ │ │ ├── label.styl │ │ │ │ │ ├── note-modern.styl │ │ │ │ │ ├── note.styl │ │ │ │ │ ├── tabs.styl │ │ │ │ │ └── tags.styl │ │ │ │ └── third-party/ │ │ │ │ ├── algolia-search.styl │ │ │ │ ├── baidushare.styl │ │ │ │ ├── busuanzi-counter.styl │ │ │ │ ├── duoshuo.styl │ │ │ │ ├── gitment.styl │ │ │ │ ├── han.styl │ │ │ │ ├── jiathis.styl │ │ │ │ ├── localsearch.styl │ │ │ │ ├── needsharebutton.styl │ │ │ │ └── third-party.styl │ │ │ ├── outline/ │ │ │ │ └── outline.styl │ │ │ └── scaffolding/ │ │ │ ├── base.styl │ │ │ ├── helpers.styl │ │ │ ├── mobile.styl │ │ │ ├── normalize.styl │ │ │ ├── scaffolding.styl │ │ │ └── tables.styl │ │ ├── _custom/ │ │ │ └── custom.styl │ │ ├── _mixins/ │ │ │ ├── Gemini.styl │ │ │ ├── Mist.styl │ │ │ ├── Muse.styl │ │ │ ├── Pisces.styl │ │ │ ├── base.styl │ │ │ └── custom.styl │ │ ├── _schemes/ │ │ │ ├── Gemini/ │ │ │ │ └── index.styl │ │ │ ├── Mist/ │ │ │ │ ├── _base.styl │ │ │ │ ├── _header.styl │ │ │ │ ├── _logo.styl │ │ │ │ ├── _menu.styl │ │ │ │ ├── _posts-expanded.styl │ │ │ │ ├── _search.styl │ │ │ │ ├── index.styl │ │ │ │ ├── outline/ │ │ │ │ │ └── outline.styl │ │ │ │ └── sidebar/ │ │ │ │ └── sidebar-blogroll.styl │ │ │ ├── Muse/ │ │ │ │ ├── _layout.styl │ │ │ │ ├── _logo.styl │ │ │ │ ├── _menu.styl │ │ │ │ ├── _search.styl │ │ │ │ ├── index.styl │ │ │ │ └── sidebar/ │ │ │ │ └── sidebar-blogroll.styl │ │ │ └── Pisces/ │ │ │ ├── _brand.styl │ │ │ ├── _layout.styl │ │ │ ├── _menu.styl │ │ │ ├── _posts.styl │ │ │ ├── _sidebar.styl │ │ │ └── index.styl │ │ ├── _variables/ │ │ │ ├── Gemini.styl │ │ │ ├── Mist.styl │ │ │ ├── Muse.styl │ │ │ ├── Pisces.styl │ │ │ ├── base.styl │ │ │ └── custom.styl │ │ └── main.styl │ ├── fonts/ │ │ └── .gitkeep │ ├── js/ │ │ └── src/ │ │ ├── affix.js │ │ ├── algolia-search.js │ │ ├── bootstrap.js │ │ ├── exturl.js │ │ ├── hook-duoshuo.js │ │ ├── js.cookie.js │ │ ├── motion.js │ │ ├── post-details.js │ │ ├── schemes/ │ │ │ └── pisces.js │ │ ├── scroll-cookie.js │ │ ├── scrollspy.js │ │ └── utils.js │ └── lib/ │ ├── canvas-ribbon/ │ │ └── canvas-ribbon.js │ ├── fastclick/ │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── lib/ │ │ └── fastclick.js │ ├── font-awesome/ │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── HELP-US-OUT.txt │ │ ├── bower.json │ │ ├── css/ │ │ │ └── font-awesome.css │ │ └── fonts/ │ │ └── FontAwesome.otf │ ├── jquery/ │ │ ├── .bower.json │ │ └── index.js │ ├── jquery_lazyload/ │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.lazyload.js │ │ └── jquery.scrollstop.js │ ├── needsharebutton/ │ │ ├── font-embedded.css │ │ ├── needsharebutton.css │ │ └── needsharebutton.js │ └── velocity/ │ ├── .bower.json │ ├── bower.json │ ├── velocity.js │ └── velocity.ui.js └── test/ ├── .jshintrc ├── helpers.js └── intern.js