├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── Bug反馈.md │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── 功能建议.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── github-release.yml │ ├── lint.yml │ ├── npm-publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── ex_pages ├── scaffolds │ ├── draft.md │ ├── page.md │ └── post.md └── source │ ├── about │ └── index.md │ ├── album │ └── index.md │ ├── friend │ └── index.md │ ├── media │ └── index.md │ ├── message │ └── index.md │ ├── music │ └── index.md │ └── self-talking │ └── index.md ├── include ├── config.js ├── dependency.js ├── migration │ ├── head.js │ ├── v2_v3.js │ ├── v3_v4.js │ ├── v4_v5.js │ └── v5_v5.1.js ├── myhelper │ └── myhelper.js ├── register.js ├── schema │ ├── comment │ │ └── .gitkeep │ ├── common │ │ ├── article.json │ │ ├── comment.json │ │ ├── donates.json │ │ ├── footer.json │ │ ├── head.json │ │ ├── navbar.json │ │ ├── plugins.json │ │ ├── providers.json │ │ ├── search.json │ │ ├── share.json │ │ ├── sidebar.json │ │ └── widgets.json │ ├── config.json │ ├── donate │ │ └── .gitkeep │ ├── misc │ │ └── .gitkeep │ ├── plugin │ │ ├── animejs.json │ │ ├── back_to_top.json │ │ └── pjax.json │ ├── search │ │ └── .gitkeep │ ├── share │ │ └── .gitkeep │ └── widget │ │ ├── ads_x.json │ │ ├── adsense.json │ │ ├── hot_recommend.json │ │ ├── latest_comment.json │ │ ├── profile.json │ │ └── recommend_post.json ├── style │ ├── article.styl │ ├── base.styl │ ├── button.styl │ ├── card.styl │ ├── codeblock.styl │ ├── donate.styl │ ├── footer.styl │ ├── helper.styl │ ├── mystyle │ │ ├── article.styl │ │ ├── base.styl │ │ ├── footer.styl │ │ ├── navbar.styl │ │ ├── night.styl │ │ ├── responsive.styl │ │ └── widget.styl │ ├── navbar.styl │ ├── pagination.styl │ ├── plugin.styl │ ├── responsive.styl │ ├── search.styl │ ├── timeline.styl │ └── widget.styl └── util │ └── console.js ├── languages ├── de.yml ├── en.yml ├── es.yml ├── fr.yml ├── id.yml ├── ja.yml ├── ko.yml ├── pl.yml ├── pt-BR.yml ├── ru.yml ├── tr.yml ├── vn.yml ├── zh-CN.yml └── zh-TW.yml ├── layout ├── archive.jsx ├── categories.jsx ├── category.jsx ├── comment │ ├── .gitkeep │ ├── gitalk.jsx │ ├── utteranc.jsx │ └── valine.jsx ├── common │ ├── article.jsx │ ├── comment.jsx │ ├── donates.jsx │ ├── footer.jsx │ ├── head.jsx │ ├── navbar.jsx │ ├── plugins.jsx │ ├── scripts.jsx │ ├── search.jsx │ ├── share.jsx │ └── widgets.jsx ├── donate │ └── .gitkeep ├── index.jsx ├── layout.jsx ├── misc │ ├── .gitkeep │ └── article_licensing.jsx ├── page.jsx ├── plugin │ ├── animejs.jsx │ └── back_to_top.jsx ├── post.jsx ├── search │ └── .gitkeep ├── share │ └── .gitkeep ├── tag.jsx ├── tags.jsx └── widget │ ├── ads_x.jsx │ ├── adsense.jsx │ ├── archives.jsx │ ├── categories.jsx │ ├── hot_recommend.jsx │ ├── latest_comment.jsx │ ├── profile.jsx │ ├── recent_posts.jsx │ ├── recommend_post.jsx │ ├── tags.jsx │ └── toc.jsx ├── package.json ├── scripts └── index.js └── source ├── css ├── DPlayer.min.css ├── cyberpunk.styl ├── default.styl ├── fonts │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ └── fontello.woff ├── global_gray.styl ├── meplayer.min.css └── style.styl ├── img ├── avatar.png ├── background.png ├── favicon.svg ├── links │ └── nopic.jpg ├── logo.svg ├── og_image.png ├── razor-bottom-black.svg └── razor-top-black.svg ├── js ├── .eslintrc.json ├── APlayer.min.js ├── DPlayer.min.js ├── about-me.js ├── animation.js ├── back_to_top.js ├── banner.js ├── column.js ├── comment-issue-data.js ├── echarts.min.js ├── friend.js ├── gitalk.min.js ├── gitalk_self.min.js ├── globalUtils.js ├── main.js ├── md5.min.js ├── meplayer.js ├── music.js └── theme-setting.js ├── json_data ├── banner.json ├── friend.json ├── music.json ├── record.json └── video.json └── live2d ├── autoload.js ├── flat-ui-icons-regular.eot ├── flat-ui-icons-regular.svg ├── flat-ui-icons-regular.ttf ├── flat-ui-icons-regular.woff ├── live2d.js ├── waifu-tips.js ├── waifu-tips.json └── waifu.css /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug反馈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/ISSUE_TEMPLATE/Bug反馈.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/功能建议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/ISSUE_TEMPLATE/功能建议.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/workflows/github-release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/_config.yml -------------------------------------------------------------------------------- /ex_pages/scaffolds/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/scaffolds/draft.md -------------------------------------------------------------------------------- /ex_pages/scaffolds/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/scaffolds/page.md -------------------------------------------------------------------------------- /ex_pages/scaffolds/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/scaffolds/post.md -------------------------------------------------------------------------------- /ex_pages/source/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/about/index.md -------------------------------------------------------------------------------- /ex_pages/source/album/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/album/index.md -------------------------------------------------------------------------------- /ex_pages/source/friend/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/friend/index.md -------------------------------------------------------------------------------- /ex_pages/source/media/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/media/index.md -------------------------------------------------------------------------------- /ex_pages/source/message/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/message/index.md -------------------------------------------------------------------------------- /ex_pages/source/music/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/music/index.md -------------------------------------------------------------------------------- /ex_pages/source/self-talking/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/ex_pages/source/self-talking/index.md -------------------------------------------------------------------------------- /include/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/config.js -------------------------------------------------------------------------------- /include/dependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/dependency.js -------------------------------------------------------------------------------- /include/migration/head.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./v5_v5.1'); 2 | -------------------------------------------------------------------------------- /include/migration/v2_v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/migration/v2_v3.js -------------------------------------------------------------------------------- /include/migration/v3_v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/migration/v3_v4.js -------------------------------------------------------------------------------- /include/migration/v4_v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/migration/v4_v5.js -------------------------------------------------------------------------------- /include/migration/v5_v5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/migration/v5_v5.1.js -------------------------------------------------------------------------------- /include/myhelper/myhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/myhelper/myhelper.js -------------------------------------------------------------------------------- /include/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/register.js -------------------------------------------------------------------------------- /include/schema/comment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/schema/common/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/article.json -------------------------------------------------------------------------------- /include/schema/common/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/comment.json -------------------------------------------------------------------------------- /include/schema/common/donates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/donates.json -------------------------------------------------------------------------------- /include/schema/common/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/footer.json -------------------------------------------------------------------------------- /include/schema/common/head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/head.json -------------------------------------------------------------------------------- /include/schema/common/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/navbar.json -------------------------------------------------------------------------------- /include/schema/common/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/plugins.json -------------------------------------------------------------------------------- /include/schema/common/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/providers.json -------------------------------------------------------------------------------- /include/schema/common/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/search.json -------------------------------------------------------------------------------- /include/schema/common/share.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/share.json -------------------------------------------------------------------------------- /include/schema/common/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/sidebar.json -------------------------------------------------------------------------------- /include/schema/common/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/common/widgets.json -------------------------------------------------------------------------------- /include/schema/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/config.json -------------------------------------------------------------------------------- /include/schema/donate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/schema/misc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/schema/plugin/animejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/plugin/animejs.json -------------------------------------------------------------------------------- /include/schema/plugin/back_to_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/plugin/back_to_top.json -------------------------------------------------------------------------------- /include/schema/plugin/pjax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/plugin/pjax.json -------------------------------------------------------------------------------- /include/schema/search/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/schema/share/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/schema/widget/ads_x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/ads_x.json -------------------------------------------------------------------------------- /include/schema/widget/adsense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/adsense.json -------------------------------------------------------------------------------- /include/schema/widget/hot_recommend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/hot_recommend.json -------------------------------------------------------------------------------- /include/schema/widget/latest_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/latest_comment.json -------------------------------------------------------------------------------- /include/schema/widget/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/profile.json -------------------------------------------------------------------------------- /include/schema/widget/recommend_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/schema/widget/recommend_post.json -------------------------------------------------------------------------------- /include/style/article.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/article.styl -------------------------------------------------------------------------------- /include/style/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/base.styl -------------------------------------------------------------------------------- /include/style/button.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/button.styl -------------------------------------------------------------------------------- /include/style/card.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/card.styl -------------------------------------------------------------------------------- /include/style/codeblock.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/codeblock.styl -------------------------------------------------------------------------------- /include/style/donate.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/donate.styl -------------------------------------------------------------------------------- /include/style/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/footer.styl -------------------------------------------------------------------------------- /include/style/helper.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/helper.styl -------------------------------------------------------------------------------- /include/style/mystyle/article.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/article.styl -------------------------------------------------------------------------------- /include/style/mystyle/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/base.styl -------------------------------------------------------------------------------- /include/style/mystyle/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/footer.styl -------------------------------------------------------------------------------- /include/style/mystyle/navbar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/navbar.styl -------------------------------------------------------------------------------- /include/style/mystyle/night.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/night.styl -------------------------------------------------------------------------------- /include/style/mystyle/responsive.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/responsive.styl -------------------------------------------------------------------------------- /include/style/mystyle/widget.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/mystyle/widget.styl -------------------------------------------------------------------------------- /include/style/navbar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/navbar.styl -------------------------------------------------------------------------------- /include/style/pagination.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/pagination.styl -------------------------------------------------------------------------------- /include/style/plugin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/plugin.styl -------------------------------------------------------------------------------- /include/style/responsive.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/responsive.styl -------------------------------------------------------------------------------- /include/style/search.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/search.styl -------------------------------------------------------------------------------- /include/style/timeline.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/timeline.styl -------------------------------------------------------------------------------- /include/style/widget.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/style/widget.styl -------------------------------------------------------------------------------- /include/util/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/include/util/console.js -------------------------------------------------------------------------------- /languages/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/de.yml -------------------------------------------------------------------------------- /languages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/en.yml -------------------------------------------------------------------------------- /languages/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/es.yml -------------------------------------------------------------------------------- /languages/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/fr.yml -------------------------------------------------------------------------------- /languages/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/id.yml -------------------------------------------------------------------------------- /languages/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/ja.yml -------------------------------------------------------------------------------- /languages/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/ko.yml -------------------------------------------------------------------------------- /languages/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/pl.yml -------------------------------------------------------------------------------- /languages/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/pt-BR.yml -------------------------------------------------------------------------------- /languages/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/ru.yml -------------------------------------------------------------------------------- /languages/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/tr.yml -------------------------------------------------------------------------------- /languages/vn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/vn.yml -------------------------------------------------------------------------------- /languages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/zh-CN.yml -------------------------------------------------------------------------------- /languages/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/languages/zh-TW.yml -------------------------------------------------------------------------------- /layout/archive.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/archive.jsx -------------------------------------------------------------------------------- /layout/categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/categories.jsx -------------------------------------------------------------------------------- /layout/category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/category.jsx -------------------------------------------------------------------------------- /layout/comment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/comment/gitalk.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/comment/gitalk.jsx -------------------------------------------------------------------------------- /layout/comment/utteranc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/comment/utteranc.jsx -------------------------------------------------------------------------------- /layout/comment/valine.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/comment/valine.jsx -------------------------------------------------------------------------------- /layout/common/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/article.jsx -------------------------------------------------------------------------------- /layout/common/comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/comment.jsx -------------------------------------------------------------------------------- /layout/common/donates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/donates.jsx -------------------------------------------------------------------------------- /layout/common/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/footer.jsx -------------------------------------------------------------------------------- /layout/common/head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/head.jsx -------------------------------------------------------------------------------- /layout/common/navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/navbar.jsx -------------------------------------------------------------------------------- /layout/common/plugins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/plugins.jsx -------------------------------------------------------------------------------- /layout/common/scripts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/scripts.jsx -------------------------------------------------------------------------------- /layout/common/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/search.jsx -------------------------------------------------------------------------------- /layout/common/share.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/share.jsx -------------------------------------------------------------------------------- /layout/common/widgets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/common/widgets.jsx -------------------------------------------------------------------------------- /layout/donate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/index.jsx -------------------------------------------------------------------------------- /layout/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/layout.jsx -------------------------------------------------------------------------------- /layout/misc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/misc/article_licensing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/misc/article_licensing.jsx -------------------------------------------------------------------------------- /layout/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/page.jsx -------------------------------------------------------------------------------- /layout/plugin/animejs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/plugin/animejs.jsx -------------------------------------------------------------------------------- /layout/plugin/back_to_top.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/plugin/back_to_top.jsx -------------------------------------------------------------------------------- /layout/post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/post.jsx -------------------------------------------------------------------------------- /layout/search/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/share/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/tag.jsx -------------------------------------------------------------------------------- /layout/tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/tags.jsx -------------------------------------------------------------------------------- /layout/widget/ads_x.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/ads_x.jsx -------------------------------------------------------------------------------- /layout/widget/adsense.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/adsense.jsx -------------------------------------------------------------------------------- /layout/widget/archives.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/archives.jsx -------------------------------------------------------------------------------- /layout/widget/categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/categories.jsx -------------------------------------------------------------------------------- /layout/widget/hot_recommend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/hot_recommend.jsx -------------------------------------------------------------------------------- /layout/widget/latest_comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/latest_comment.jsx -------------------------------------------------------------------------------- /layout/widget/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/profile.jsx -------------------------------------------------------------------------------- /layout/widget/recent_posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/recent_posts.jsx -------------------------------------------------------------------------------- /layout/widget/recommend_post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/recommend_post.jsx -------------------------------------------------------------------------------- /layout/widget/tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/tags.jsx -------------------------------------------------------------------------------- /layout/widget/toc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/layout/widget/toc.jsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/package.json -------------------------------------------------------------------------------- /scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/scripts/index.js -------------------------------------------------------------------------------- /source/css/DPlayer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/DPlayer.min.css -------------------------------------------------------------------------------- /source/css/cyberpunk.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/cyberpunk.styl -------------------------------------------------------------------------------- /source/css/default.styl: -------------------------------------------------------------------------------- 1 | @import 'style' 2 | -------------------------------------------------------------------------------- /source/css/fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/fonts/fontello.eot -------------------------------------------------------------------------------- /source/css/fonts/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/fonts/fontello.svg -------------------------------------------------------------------------------- /source/css/fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/fonts/fontello.ttf -------------------------------------------------------------------------------- /source/css/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/fonts/fontello.woff -------------------------------------------------------------------------------- /source/css/global_gray.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/global_gray.styl -------------------------------------------------------------------------------- /source/css/meplayer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/meplayer.min.css -------------------------------------------------------------------------------- /source/css/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/css/style.styl -------------------------------------------------------------------------------- /source/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/avatar.png -------------------------------------------------------------------------------- /source/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/background.png -------------------------------------------------------------------------------- /source/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/favicon.svg -------------------------------------------------------------------------------- /source/img/links/nopic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/links/nopic.jpg -------------------------------------------------------------------------------- /source/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/logo.svg -------------------------------------------------------------------------------- /source/img/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/og_image.png -------------------------------------------------------------------------------- /source/img/razor-bottom-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/razor-bottom-black.svg -------------------------------------------------------------------------------- /source/img/razor-top-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/img/razor-top-black.svg -------------------------------------------------------------------------------- /source/js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/.eslintrc.json -------------------------------------------------------------------------------- /source/js/APlayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/APlayer.min.js -------------------------------------------------------------------------------- /source/js/DPlayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/DPlayer.min.js -------------------------------------------------------------------------------- /source/js/about-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/about-me.js -------------------------------------------------------------------------------- /source/js/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/animation.js -------------------------------------------------------------------------------- /source/js/back_to_top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/back_to_top.js -------------------------------------------------------------------------------- /source/js/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/banner.js -------------------------------------------------------------------------------- /source/js/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/column.js -------------------------------------------------------------------------------- /source/js/comment-issue-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/comment-issue-data.js -------------------------------------------------------------------------------- /source/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/echarts.min.js -------------------------------------------------------------------------------- /source/js/friend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/friend.js -------------------------------------------------------------------------------- /source/js/gitalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/gitalk.min.js -------------------------------------------------------------------------------- /source/js/gitalk_self.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/gitalk_self.min.js -------------------------------------------------------------------------------- /source/js/globalUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/globalUtils.js -------------------------------------------------------------------------------- /source/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/main.js -------------------------------------------------------------------------------- /source/js/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/md5.min.js -------------------------------------------------------------------------------- /source/js/meplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/meplayer.js -------------------------------------------------------------------------------- /source/js/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/music.js -------------------------------------------------------------------------------- /source/js/theme-setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/js/theme-setting.js -------------------------------------------------------------------------------- /source/json_data/banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/json_data/banner.json -------------------------------------------------------------------------------- /source/json_data/friend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/json_data/friend.json -------------------------------------------------------------------------------- /source/json_data/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/json_data/music.json -------------------------------------------------------------------------------- /source/json_data/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/json_data/record.json -------------------------------------------------------------------------------- /source/json_data/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/json_data/video.json -------------------------------------------------------------------------------- /source/live2d/autoload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/autoload.js -------------------------------------------------------------------------------- /source/live2d/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /source/live2d/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/flat-ui-icons-regular.svg -------------------------------------------------------------------------------- /source/live2d/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /source/live2d/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /source/live2d/live2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/live2d.js -------------------------------------------------------------------------------- /source/live2d/waifu-tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/waifu-tips.js -------------------------------------------------------------------------------- /source/live2d/waifu-tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/waifu-tips.json -------------------------------------------------------------------------------- /source/live2d/waifu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/removeif/hexo-theme-amazing/HEAD/source/live2d/waifu.css --------------------------------------------------------------------------------