├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── hexo-check.yml │ ├── linter.yml │ ├── performance-test.yml │ ├── release-drafter.yml │ └── tester.yml ├── .gitignore ├── .stylintrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── _config.yml ├── index.js ├── languages ├── default.yml ├── en.yml ├── zh-CN.yml ├── zh-HK.yml ├── zh-TW.yml └── zh.yml ├── layout ├── _partials │ ├── comments.ejs │ ├── footer.ejs │ ├── head │ │ └── head.ejs │ ├── header │ │ ├── brand.ejs │ │ ├── index.ejs │ │ └── menu.ejs │ ├── pagination.ejs │ ├── post-collapse.ejs │ ├── post.ejs │ ├── post │ │ ├── banner.ejs │ │ ├── copyright.ejs │ │ ├── meta.ejs │ │ ├── page-header.ejs │ │ ├── post-menu.ejs │ │ ├── read-more.ejs │ │ └── tags.ejs │ ├── sidebar.ejs │ └── sidebar │ │ └── site-overview.ejs ├── archive.ejs ├── category.ejs ├── index.ejs ├── layout.ejs ├── page.ejs ├── post.ejs └── tag.ejs ├── lib ├── config.js ├── console │ ├── ajv-helper.js │ ├── check.js │ └── schema.yml ├── css.js ├── extend │ ├── README.md │ ├── comment │ │ ├── README.md │ │ ├── common.js │ │ ├── disqus │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── dist.js │ │ ├── index.js │ │ ├── livere │ │ │ ├── README.md │ │ │ └── index.js │ │ └── utteranc │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── style.styl │ ├── external-link │ │ ├── README.md │ │ └── index.js │ ├── font-size-preview │ │ ├── README.md │ │ ├── dist.js │ │ ├── index.js │ │ └── style.styl │ ├── index.js │ ├── json-ld │ │ ├── README.md │ │ └── index.js │ ├── lozad │ │ ├── README.md │ │ ├── index.js │ │ ├── load.js │ │ └── renderer.js │ ├── medium-zoom │ │ ├── README.md │ │ └── index.js │ └── reward │ │ ├── README.md │ │ ├── index.js │ │ ├── script.js │ │ ├── simple.ejs │ │ ├── styles.styl │ │ └── variables.styl ├── filters │ ├── front-matter.js │ └── index.js ├── helpers │ ├── cake-image.js │ ├── cake-title.js │ ├── favicon.js │ ├── index.js │ ├── next-js.js │ ├── next-url.js │ └── post_nav.js ├── hexo │ ├── config.js │ ├── index.js │ └── rm-filter.js ├── icon.js ├── js │ ├── index.js │ ├── next-boot.js │ └── switch-color.js ├── load.js ├── menu.js ├── sns.js ├── tags │ ├── bilibili.js │ ├── button.js │ ├── index.js │ ├── note.js │ ├── preview.js │ └── video.js └── utils.js ├── package.json ├── renovate.json ├── scripts └── index.js ├── source ├── css │ ├── _styles │ │ ├── base.styl │ │ ├── buttons.styl │ │ ├── card.styl │ │ ├── code.styl │ │ ├── comments.styl │ │ ├── footer.styl │ │ ├── header │ │ │ ├── header.styl │ │ │ ├── menu.styl │ │ │ ├── site-meta.styl │ │ │ └── site-nav.styl │ │ ├── helpers.styl │ │ ├── index.styl │ │ ├── note.styl │ │ ├── pages │ │ │ ├── archive.styl │ │ │ ├── categories.styl │ │ │ ├── index.styl │ │ │ └── tag-cloud.styl │ │ ├── pagination.styl │ │ ├── post │ │ │ ├── index.styl │ │ │ ├── post-banner.styl │ │ │ ├── post-block.styl │ │ │ ├── post-body.styl │ │ │ ├── post-collapse.styl │ │ │ ├── post-copyright.styl │ │ │ ├── post-menu.styl │ │ │ ├── post-meta.styl │ │ │ ├── post-nav.styl │ │ │ ├── post-tags.styl │ │ │ └── post-title.styl │ │ ├── sidebar │ │ │ ├── index.styl │ │ │ ├── sidebar-author.styl │ │ │ ├── sidebar-nav.styl │ │ │ ├── sidebar-social-links.styl │ │ │ ├── sidebar-toc.styl │ │ │ └── site-state.styl │ │ ├── tables.styl │ │ └── utils.styl │ ├── _variables │ │ ├── help.styl │ │ └── index.styl │ └── color │ │ ├── dark.styl │ │ ├── index.styl │ │ └── light.styl ├── fonts │ └── .gitkeep └── images │ ├── algolia_logo.svg │ ├── apple-touch-icon-next.png │ ├── avatar.gif │ ├── cc-by-nc-nd.svg │ ├── cc-by-nc-sa.svg │ ├── cc-by-nc.svg │ ├── cc-by-nd.svg │ ├── cc-by-sa.svg │ ├── cc-by.svg │ ├── cc-zero.svg │ ├── favicon-16x16-next.png │ ├── favicon-32x32-next.png │ ├── loading-c.gif │ ├── loading-l.gif │ ├── loading.gif │ ├── logo.svg │ ├── placeholder.gif │ ├── quote-l.svg │ ├── quote-r.svg │ └── searchicon.png └── test ├── .eslintrc ├── console └── check.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text = auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/hexo-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/workflows/hexo-check.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/performance-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/workflows/performance-test.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.github/workflows/tester.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.stylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/_config.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/index.js -------------------------------------------------------------------------------- /languages/default.yml: -------------------------------------------------------------------------------- 1 | en.yml -------------------------------------------------------------------------------- /languages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/languages/en.yml -------------------------------------------------------------------------------- /languages/zh-CN.yml: -------------------------------------------------------------------------------- 1 | zh.yml 2 | -------------------------------------------------------------------------------- /languages/zh-HK.yml: -------------------------------------------------------------------------------- 1 | zh.yml 2 | -------------------------------------------------------------------------------- /languages/zh-TW.yml: -------------------------------------------------------------------------------- 1 | zh.yml 2 | -------------------------------------------------------------------------------- /languages/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/languages/zh.yml -------------------------------------------------------------------------------- /layout/_partials/comments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/comments.ejs -------------------------------------------------------------------------------- /layout/_partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/footer.ejs -------------------------------------------------------------------------------- /layout/_partials/head/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/head/head.ejs -------------------------------------------------------------------------------- /layout/_partials/header/brand.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/header/brand.ejs -------------------------------------------------------------------------------- /layout/_partials/header/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/header/index.ejs -------------------------------------------------------------------------------- /layout/_partials/header/menu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/header/menu.ejs -------------------------------------------------------------------------------- /layout/_partials/pagination.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/pagination.ejs -------------------------------------------------------------------------------- /layout/_partials/post-collapse.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post-collapse.ejs -------------------------------------------------------------------------------- /layout/_partials/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post.ejs -------------------------------------------------------------------------------- /layout/_partials/post/banner.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/banner.ejs -------------------------------------------------------------------------------- /layout/_partials/post/copyright.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/copyright.ejs -------------------------------------------------------------------------------- /layout/_partials/post/meta.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/meta.ejs -------------------------------------------------------------------------------- /layout/_partials/post/page-header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/page-header.ejs -------------------------------------------------------------------------------- /layout/_partials/post/post-menu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/post-menu.ejs -------------------------------------------------------------------------------- /layout/_partials/post/read-more.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/read-more.ejs -------------------------------------------------------------------------------- /layout/_partials/post/tags.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/post/tags.ejs -------------------------------------------------------------------------------- /layout/_partials/sidebar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/sidebar.ejs -------------------------------------------------------------------------------- /layout/_partials/sidebar/site-overview.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/_partials/sidebar/site-overview.ejs -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/archive.ejs -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/category.ejs -------------------------------------------------------------------------------- /layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/index.ejs -------------------------------------------------------------------------------- /layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/layout.ejs -------------------------------------------------------------------------------- /layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/page.ejs -------------------------------------------------------------------------------- /layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/post.ejs -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/layout/tag.ejs -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/console/ajv-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/console/ajv-helper.js -------------------------------------------------------------------------------- /lib/console/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/console/check.js -------------------------------------------------------------------------------- /lib/console/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/console/schema.yml -------------------------------------------------------------------------------- /lib/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/css.js -------------------------------------------------------------------------------- /lib/extend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/README.md -------------------------------------------------------------------------------- /lib/extend/comment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/README.md -------------------------------------------------------------------------------- /lib/extend/comment/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/common.js -------------------------------------------------------------------------------- /lib/extend/comment/disqus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/disqus/README.md -------------------------------------------------------------------------------- /lib/extend/comment/disqus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/disqus/index.js -------------------------------------------------------------------------------- /lib/extend/comment/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/dist.js -------------------------------------------------------------------------------- /lib/extend/comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/index.js -------------------------------------------------------------------------------- /lib/extend/comment/livere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/livere/README.md -------------------------------------------------------------------------------- /lib/extend/comment/livere/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/livere/index.js -------------------------------------------------------------------------------- /lib/extend/comment/utteranc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/utteranc/README.md -------------------------------------------------------------------------------- /lib/extend/comment/utteranc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/comment/utteranc/index.js -------------------------------------------------------------------------------- /lib/extend/comment/utteranc/style.styl: -------------------------------------------------------------------------------- 1 | .utterances { 2 | max-width: unset; 3 | } 4 | -------------------------------------------------------------------------------- /lib/extend/external-link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/external-link/README.md -------------------------------------------------------------------------------- /lib/extend/external-link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/external-link/index.js -------------------------------------------------------------------------------- /lib/extend/font-size-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/font-size-preview/README.md -------------------------------------------------------------------------------- /lib/extend/font-size-preview/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/font-size-preview/dist.js -------------------------------------------------------------------------------- /lib/extend/font-size-preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/font-size-preview/index.js -------------------------------------------------------------------------------- /lib/extend/font-size-preview/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/font-size-preview/style.styl -------------------------------------------------------------------------------- /lib/extend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/index.js -------------------------------------------------------------------------------- /lib/extend/json-ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/json-ld/README.md -------------------------------------------------------------------------------- /lib/extend/json-ld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/json-ld/index.js -------------------------------------------------------------------------------- /lib/extend/lozad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/lozad/README.md -------------------------------------------------------------------------------- /lib/extend/lozad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/lozad/index.js -------------------------------------------------------------------------------- /lib/extend/lozad/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/lozad/load.js -------------------------------------------------------------------------------- /lib/extend/lozad/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/lozad/renderer.js -------------------------------------------------------------------------------- /lib/extend/medium-zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/medium-zoom/README.md -------------------------------------------------------------------------------- /lib/extend/medium-zoom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/medium-zoom/index.js -------------------------------------------------------------------------------- /lib/extend/reward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/README.md -------------------------------------------------------------------------------- /lib/extend/reward/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/index.js -------------------------------------------------------------------------------- /lib/extend/reward/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/script.js -------------------------------------------------------------------------------- /lib/extend/reward/simple.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/simple.ejs -------------------------------------------------------------------------------- /lib/extend/reward/styles.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/styles.styl -------------------------------------------------------------------------------- /lib/extend/reward/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/extend/reward/variables.styl -------------------------------------------------------------------------------- /lib/filters/front-matter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/filters/front-matter.js -------------------------------------------------------------------------------- /lib/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/filters/index.js -------------------------------------------------------------------------------- /lib/helpers/cake-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/cake-image.js -------------------------------------------------------------------------------- /lib/helpers/cake-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/cake-title.js -------------------------------------------------------------------------------- /lib/helpers/favicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/favicon.js -------------------------------------------------------------------------------- /lib/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/index.js -------------------------------------------------------------------------------- /lib/helpers/next-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/next-js.js -------------------------------------------------------------------------------- /lib/helpers/next-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/next-url.js -------------------------------------------------------------------------------- /lib/helpers/post_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/helpers/post_nav.js -------------------------------------------------------------------------------- /lib/hexo/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/hexo/config.js -------------------------------------------------------------------------------- /lib/hexo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/hexo/index.js -------------------------------------------------------------------------------- /lib/hexo/rm-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/hexo/rm-filter.js -------------------------------------------------------------------------------- /lib/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/icon.js -------------------------------------------------------------------------------- /lib/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/js/index.js -------------------------------------------------------------------------------- /lib/js/next-boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/js/next-boot.js -------------------------------------------------------------------------------- /lib/js/switch-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/js/switch-color.js -------------------------------------------------------------------------------- /lib/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/load.js -------------------------------------------------------------------------------- /lib/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/menu.js -------------------------------------------------------------------------------- /lib/sns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/sns.js -------------------------------------------------------------------------------- /lib/tags/bilibili.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/bilibili.js -------------------------------------------------------------------------------- /lib/tags/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/button.js -------------------------------------------------------------------------------- /lib/tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/index.js -------------------------------------------------------------------------------- /lib/tags/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/note.js -------------------------------------------------------------------------------- /lib/tags/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/preview.js -------------------------------------------------------------------------------- /lib/tags/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/tags/video.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/index.js: -------------------------------------------------------------------------------- 1 | /* global hexo */ 2 | 'use strict'; 3 | 4 | return require('../lib/load')(hexo); 5 | -------------------------------------------------------------------------------- /source/css/_styles/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/base.styl -------------------------------------------------------------------------------- /source/css/_styles/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/buttons.styl -------------------------------------------------------------------------------- /source/css/_styles/card.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/card.styl -------------------------------------------------------------------------------- /source/css/_styles/code.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/code.styl -------------------------------------------------------------------------------- /source/css/_styles/comments.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/comments.styl -------------------------------------------------------------------------------- /source/css/_styles/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/footer.styl -------------------------------------------------------------------------------- /source/css/_styles/header/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/header/header.styl -------------------------------------------------------------------------------- /source/css/_styles/header/menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/header/menu.styl -------------------------------------------------------------------------------- /source/css/_styles/header/site-meta.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/header/site-meta.styl -------------------------------------------------------------------------------- /source/css/_styles/header/site-nav.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/header/site-nav.styl -------------------------------------------------------------------------------- /source/css/_styles/helpers.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/helpers.styl -------------------------------------------------------------------------------- /source/css/_styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/index.styl -------------------------------------------------------------------------------- /source/css/_styles/note.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/note.styl -------------------------------------------------------------------------------- /source/css/_styles/pages/archive.styl: -------------------------------------------------------------------------------- 1 | .post-block.archive { 2 | padding: 10px 0 30px 3 | } 4 | -------------------------------------------------------------------------------- /source/css/_styles/pages/categories.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/pages/categories.styl -------------------------------------------------------------------------------- /source/css/_styles/pages/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/pages/index.styl -------------------------------------------------------------------------------- /source/css/_styles/pages/tag-cloud.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/pages/tag-cloud.styl -------------------------------------------------------------------------------- /source/css/_styles/pagination.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/pagination.styl -------------------------------------------------------------------------------- /source/css/_styles/post/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/index.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-banner.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-banner.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-block.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-block.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-body.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-body.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-collapse.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-collapse.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-copyright.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-copyright.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-menu.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-meta.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-meta.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-nav.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-nav.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-tags.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-tags.styl -------------------------------------------------------------------------------- /source/css/_styles/post/post-title.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/post/post-title.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/index.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/sidebar-author.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/sidebar-author.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/sidebar-nav.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/sidebar-nav.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/sidebar-social-links.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/sidebar-social-links.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/sidebar-toc.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/sidebar-toc.styl -------------------------------------------------------------------------------- /source/css/_styles/sidebar/site-state.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/sidebar/site-state.styl -------------------------------------------------------------------------------- /source/css/_styles/tables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/tables.styl -------------------------------------------------------------------------------- /source/css/_styles/utils.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_styles/utils.styl -------------------------------------------------------------------------------- /source/css/_variables/help.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_variables/help.styl -------------------------------------------------------------------------------- /source/css/_variables/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/_variables/index.styl -------------------------------------------------------------------------------- /source/css/color/dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/color/dark.styl -------------------------------------------------------------------------------- /source/css/color/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/color/index.styl -------------------------------------------------------------------------------- /source/css/color/light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/css/color/light.styl -------------------------------------------------------------------------------- /source/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/images/algolia_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/algolia_logo.svg -------------------------------------------------------------------------------- /source/images/apple-touch-icon-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/apple-touch-icon-next.png -------------------------------------------------------------------------------- /source/images/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/avatar.gif -------------------------------------------------------------------------------- /source/images/cc-by-nc-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by-nc-nd.svg -------------------------------------------------------------------------------- /source/images/cc-by-nc-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by-nc-sa.svg -------------------------------------------------------------------------------- /source/images/cc-by-nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by-nc.svg -------------------------------------------------------------------------------- /source/images/cc-by-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by-nd.svg -------------------------------------------------------------------------------- /source/images/cc-by-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by-sa.svg -------------------------------------------------------------------------------- /source/images/cc-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-by.svg -------------------------------------------------------------------------------- /source/images/cc-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/cc-zero.svg -------------------------------------------------------------------------------- /source/images/favicon-16x16-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/favicon-16x16-next.png -------------------------------------------------------------------------------- /source/images/favicon-32x32-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/favicon-32x32-next.png -------------------------------------------------------------------------------- /source/images/loading-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/loading-c.gif -------------------------------------------------------------------------------- /source/images/loading-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/loading-l.gif -------------------------------------------------------------------------------- /source/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/loading.gif -------------------------------------------------------------------------------- /source/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/logo.svg -------------------------------------------------------------------------------- /source/images/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/placeholder.gif -------------------------------------------------------------------------------- /source/images/quote-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/quote-l.svg -------------------------------------------------------------------------------- /source/images/quote-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/quote-r.svg -------------------------------------------------------------------------------- /source/images/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/source/images/searchicon.png -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "hexo/test" 3 | } 4 | -------------------------------------------------------------------------------- /test/console/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/test/console/check.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangtj/hexo-theme-cake/HEAD/test/index.js --------------------------------------------------------------------------------