├── .eslintrc ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── _config.js ├── components ├── Footer.vue ├── Header.vue ├── LayoutContainer.vue ├── NavIcon.vue ├── Navbar.vue ├── PVUV │ └── Busuanzi.vue ├── Pagination.vue ├── RecentPost.vue └── Sidebar.vue ├── enhanceApp.js ├── index.js ├── jsconfig.json ├── layouts ├── Category.vue ├── GlobalLayout.vue ├── Layout.vue ├── Post.vue └── Tag.vue ├── package.json ├── plugins ├── melody │ └── index.js └── stylus │ └── index.js ├── styles ├── _global │ ├── head-font.styl │ ├── index.styl │ └── list.styl ├── _highlight │ ├── diff.styl │ ├── index.styl │ └── theme.styl ├── _layout │ ├── footer.styl │ ├── main.styl │ ├── navbar.styl │ ├── page.styl │ ├── pagination.styl │ ├── post.styl │ └── sidebar.styl ├── index.styl ├── palette.styl └── var.styl ├── utils ├── event │ ├── bus.js │ └── list.js ├── i18n │ ├── index.js │ └── languages │ │ ├── default.json │ │ ├── en-US.json │ │ └── zh-Hans.json ├── index.js └── mixin.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/README.md -------------------------------------------------------------------------------- /_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/_config.js -------------------------------------------------------------------------------- /components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/Footer.vue -------------------------------------------------------------------------------- /components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/Header.vue -------------------------------------------------------------------------------- /components/LayoutContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/LayoutContainer.vue -------------------------------------------------------------------------------- /components/NavIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/NavIcon.vue -------------------------------------------------------------------------------- /components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/Navbar.vue -------------------------------------------------------------------------------- /components/PVUV/Busuanzi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/PVUV/Busuanzi.vue -------------------------------------------------------------------------------- /components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/Pagination.vue -------------------------------------------------------------------------------- /components/RecentPost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/RecentPost.vue -------------------------------------------------------------------------------- /components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/components/Sidebar.vue -------------------------------------------------------------------------------- /enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/enhanceApp.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/layouts/Category.vue -------------------------------------------------------------------------------- /layouts/GlobalLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/layouts/GlobalLayout.vue -------------------------------------------------------------------------------- /layouts/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/layouts/Layout.vue -------------------------------------------------------------------------------- /layouts/Post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/layouts/Post.vue -------------------------------------------------------------------------------- /layouts/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/layouts/Tag.vue -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/package.json -------------------------------------------------------------------------------- /plugins/melody/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/plugins/melody/index.js -------------------------------------------------------------------------------- /plugins/stylus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/plugins/stylus/index.js -------------------------------------------------------------------------------- /styles/_global/head-font.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_global/head-font.styl -------------------------------------------------------------------------------- /styles/_global/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_global/index.styl -------------------------------------------------------------------------------- /styles/_global/list.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_global/list.styl -------------------------------------------------------------------------------- /styles/_highlight/diff.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_highlight/diff.styl -------------------------------------------------------------------------------- /styles/_highlight/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_highlight/index.styl -------------------------------------------------------------------------------- /styles/_highlight/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_highlight/theme.styl -------------------------------------------------------------------------------- /styles/_layout/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/footer.styl -------------------------------------------------------------------------------- /styles/_layout/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/main.styl -------------------------------------------------------------------------------- /styles/_layout/navbar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/navbar.styl -------------------------------------------------------------------------------- /styles/_layout/page.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/page.styl -------------------------------------------------------------------------------- /styles/_layout/pagination.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/pagination.styl -------------------------------------------------------------------------------- /styles/_layout/post.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/_layout/sidebar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/_layout/sidebar.styl -------------------------------------------------------------------------------- /styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/index.styl -------------------------------------------------------------------------------- /styles/palette.styl: -------------------------------------------------------------------------------- 1 | $nprogressColor = darken(#49B1F5, 10%) -------------------------------------------------------------------------------- /styles/var.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/styles/var.styl -------------------------------------------------------------------------------- /utils/event/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/event/bus.js -------------------------------------------------------------------------------- /utils/event/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/event/list.js -------------------------------------------------------------------------------- /utils/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/i18n/index.js -------------------------------------------------------------------------------- /utils/i18n/languages/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/i18n/languages/default.json -------------------------------------------------------------------------------- /utils/i18n/languages/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/i18n/languages/en-US.json -------------------------------------------------------------------------------- /utils/i18n/languages/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/i18n/languages/zh-Hans.json -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/index.js -------------------------------------------------------------------------------- /utils/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/utils/mixin.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molunerfinn/vuepress-theme-melody/HEAD/yarn.lock --------------------------------------------------------------------------------