├── .gitignore ├── layout ├── page.ejs ├── post.ejs ├── index.ejs ├── tag.ejs ├── archive.ejs ├── category.ejs ├── _partial │ ├── post │ │ ├── tag.ejs │ │ ├── category.ejs │ │ ├── title.ejs │ │ ├── date.ejs │ │ ├── share.ejs │ │ └── nav.ejs │ ├── ie-updater.ejs │ ├── scrolling-button.ejs │ ├── comments │ │ ├── youyan.ejs │ │ ├── click2show.ejs │ │ ├── duoshuo.ejs │ │ ├── disqus.ejs │ │ └── count-comment.ejs │ ├── google-analytics.ejs │ ├── mathjax.ejs │ ├── archive-post.ejs │ ├── after-footer.ejs │ ├── page.ejs │ ├── tab-title-change.ejs │ ├── background.ejs │ ├── post-nav-button.ejs │ ├── toc.ejs │ ├── header.ejs │ ├── archive.ejs │ ├── open-in-new-tab.ejs │ ├── mobile-nav.ejs │ ├── tag-cloud-page.ejs │ ├── footer.ejs │ ├── article.ejs │ ├── head.ejs │ └── left-col.ejs └── layout.ejs ├── source ├── img │ ├── CSDN.png │ ├── V2EX.png │ ├── 博客园.png │ ├── 新浪微博.png │ ├── 知乎.png │ ├── 简书.png │ ├── 虾米音乐.png │ ├── 豆瓣.png │ ├── AcFun.png │ ├── Coding.png │ ├── LOFTER.png │ ├── Quora.png │ ├── avatar.png │ ├── 网易云音乐.png │ ├── Plunker.png │ ├── bilibili.png │ ├── niconico.png │ ├── TiddlyWiki.png │ ├── SegmentFault.png │ └── scrollbar_arrow.png ├── background │ ├── bg-1.jpg │ ├── bg-2.jpg │ ├── bg-3.jpg │ ├── bg-4.jpg │ ├── bg-5.jpg │ ├── bg-6.jpg │ └── backup │ │ ├── bg-1.jpg │ │ ├── bg-2.jpg │ │ ├── bg-3.jpg │ │ └── bg-4.jpg ├── apple-touch-icon.png ├── css │ ├── _partial │ │ ├── wheelmenu.styl │ │ ├── footer.styl │ │ ├── page.styl │ │ ├── customise │ │ │ ├── inline-code.styl │ │ │ ├── color-scheme.styl │ │ │ ├── list.styl │ │ │ ├── blockquote.styl │ │ │ ├── heading.styl │ │ │ ├── social-icon.styl │ │ │ └── code-block.styl │ │ ├── share.styl │ │ ├── scroll.styl │ │ ├── search.styl │ │ ├── mobile-slider.styl │ │ ├── toc.styl │ │ ├── instagram.styl │ │ ├── archive.styl │ │ ├── header.styl │ │ ├── highlight.styl │ │ ├── mobile.styl │ │ ├── tagcloud.styl │ │ ├── article.styl │ │ └── main.styl │ ├── _util │ │ ├── mixin.styl │ │ └── grid.styl │ ├── _extend.styl │ ├── style.styl │ └── _variables.styl └── js │ ├── toc.js │ ├── instagram.js │ ├── search.js │ ├── mobile.js │ ├── GithubRepoWidget.js │ ├── main.js │ └── pc.js ├── .github └── ISSUE_TEMPLATE.md ├── package.json ├── languages ├── default.yml ├── zh-Hans.yml ├── zh-Hant-HK.yml ├── zh-Hant-TW.yml └── en.yml ├── README.md └── _config.yml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.db 3 | 4 | *.DS_Store 5 | -------------------------------------------------------------------------------- /layout/page.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/article', {post: page, index: false}) %> -------------------------------------------------------------------------------- /layout/post.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/article', {post: page, index: false}) %> -------------------------------------------------------------------------------- /layout/index.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/archive', {pagination: 2, index: true}) %> -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/archive', {pagination: config.tag, index: true}) %> -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/archive', {pagination: config.archive, index: true}) %> -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('_partial/archive', {pagination: config.category, index: true}) %> -------------------------------------------------------------------------------- /source/img/CSDN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/CSDN.png -------------------------------------------------------------------------------- /source/img/V2EX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/V2EX.png -------------------------------------------------------------------------------- /source/img/博客园.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/博客园.png -------------------------------------------------------------------------------- /source/img/新浪微博.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/新浪微博.png -------------------------------------------------------------------------------- /source/img/知乎.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/知乎.png -------------------------------------------------------------------------------- /source/img/简书.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/简书.png -------------------------------------------------------------------------------- /source/img/虾米音乐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/虾米音乐.png -------------------------------------------------------------------------------- /source/img/豆瓣.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/豆瓣.png -------------------------------------------------------------------------------- /source/img/AcFun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/AcFun.png -------------------------------------------------------------------------------- /source/img/Coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/Coding.png -------------------------------------------------------------------------------- /source/img/LOFTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/LOFTER.png -------------------------------------------------------------------------------- /source/img/Quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/Quora.png -------------------------------------------------------------------------------- /source/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/avatar.png -------------------------------------------------------------------------------- /source/img/网易云音乐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/网易云音乐.png -------------------------------------------------------------------------------- /source/img/Plunker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/Plunker.png -------------------------------------------------------------------------------- /source/img/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/bilibili.png -------------------------------------------------------------------------------- /source/img/niconico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/niconico.png -------------------------------------------------------------------------------- /source/background/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-1.jpg -------------------------------------------------------------------------------- /source/background/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-2.jpg -------------------------------------------------------------------------------- /source/background/bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-3.jpg -------------------------------------------------------------------------------- /source/background/bg-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-4.jpg -------------------------------------------------------------------------------- /source/background/bg-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-5.jpg -------------------------------------------------------------------------------- /source/background/bg-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/bg-6.jpg -------------------------------------------------------------------------------- /source/img/TiddlyWiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/TiddlyWiki.png -------------------------------------------------------------------------------- /source/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/apple-touch-icon.png -------------------------------------------------------------------------------- /source/img/SegmentFault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/SegmentFault.png -------------------------------------------------------------------------------- /source/img/scrollbar_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/img/scrollbar_arrow.png -------------------------------------------------------------------------------- /source/background/backup/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/backup/bg-1.jpg -------------------------------------------------------------------------------- /source/background/backup/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/backup/bg-2.jpg -------------------------------------------------------------------------------- /source/background/backup/bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/backup/bg-3.jpg -------------------------------------------------------------------------------- /source/background/backup/bg-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MOxFIVE/hexo-theme-yelee/HEAD/source/background/backup/bg-4.jpg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | > 建议阅读:[在 Stack Overflow 提问的检查表](http://t.cn/R5tOIdv) 2 | > Recommended Reading: [STACK OVERFLOW QUESTION CHECKLIST](http://tinyurl.com/stack-checklist) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hexo-site", 3 | "version": "2.8.3", 4 | "private": true, 5 | "dependencies": { 6 | "hexo-renderer-ejs": "*", 7 | "hexo-renderer-stylus": "*", 8 | "hexo-renderer-marked": "*" 9 | } 10 | } -------------------------------------------------------------------------------- /layout/_partial/post/tag.ejs: -------------------------------------------------------------------------------- 1 | <% if (post.tags && post.tags.length){ %> 2 |