├── .babelrc ├── .gitignore ├── README.md ├── common.jade ├── error.jade ├── main.jade ├── package.json ├── public ├── bg.png ├── common.build.js ├── dirs.png ├── favicon.ico ├── main.build.js └── me.jpg ├── server ├── app.js ├── cms ├── db.js ├── index.js └── init.js ├── src ├── common.js ├── components │ ├── Account.vue │ ├── Archive.vue │ ├── Article.vue │ ├── ArticleList.vue │ ├── Console.vue │ ├── Editor.vue │ ├── Index.vue │ ├── Links.vue │ ├── Login.vue │ ├── MyCanvas.vue │ ├── MyFooter.vue │ ├── MyHeader.vue │ ├── NaviHeader.vue │ ├── NightSky.vue │ ├── Pop.vue │ ├── Register.vue │ └── Waiting.vue ├── fonts │ ├── demo.css │ ├── demo_fontclass.html │ ├── demo_symbol.html │ ├── demo_unicode.html │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.js │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff ├── img │ ├── favicon.ico │ └── me.jpg ├── js │ ├── cookieUtil.js │ ├── highlight.min.js │ ├── jquery.min.js │ ├── login.js │ ├── marked.min.js │ └── validate.js ├── main.js ├── style │ ├── btn.css │ ├── common.scss │ ├── components │ │ ├── Account.scss │ │ ├── Archive.scss │ │ ├── Article.scss │ │ ├── ArticleList.scss │ │ ├── Console.scss │ │ ├── Editor.scss │ │ ├── Index.scss │ │ ├── Links.scss │ │ ├── Login.scss │ │ ├── MyFooter.scss │ │ ├── MyHeader.scss │ │ ├── NaviHeader.scss │ │ ├── NightSky.scss │ │ ├── Pop.scss │ │ ├── Register.scss │ │ └── Waiting.scss │ ├── lib │ │ ├── highlight.css │ │ ├── iconfont.css │ │ ├── markdown.css │ │ └── normalize.css │ ├── mediaQuery.scss │ ├── mixins.scss │ └── variables.scss └── vuex │ ├── actions.js │ ├── getters.js │ └── store.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | .idea/ 6 | index.html 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/README.md -------------------------------------------------------------------------------- /common.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/common.jade -------------------------------------------------------------------------------- /error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/error.jade -------------------------------------------------------------------------------- /main.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/main.jade -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/package.json -------------------------------------------------------------------------------- /public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/bg.png -------------------------------------------------------------------------------- /public/common.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/common.build.js -------------------------------------------------------------------------------- /public/dirs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/dirs.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/main.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/main.build.js -------------------------------------------------------------------------------- /public/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/public/me.jpg -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/server/app.js -------------------------------------------------------------------------------- /server/cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/server/cms -------------------------------------------------------------------------------- /server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/server/db.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/server/index.js -------------------------------------------------------------------------------- /server/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/server/init.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/common.js -------------------------------------------------------------------------------- /src/components/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Account.vue -------------------------------------------------------------------------------- /src/components/Archive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Archive.vue -------------------------------------------------------------------------------- /src/components/Article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Article.vue -------------------------------------------------------------------------------- /src/components/ArticleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/ArticleList.vue -------------------------------------------------------------------------------- /src/components/Console.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Console.vue -------------------------------------------------------------------------------- /src/components/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Editor.vue -------------------------------------------------------------------------------- /src/components/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Index.vue -------------------------------------------------------------------------------- /src/components/Links.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Links.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/MyCanvas.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/MyCanvas.vue -------------------------------------------------------------------------------- /src/components/MyFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/MyFooter.vue -------------------------------------------------------------------------------- /src/components/MyHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/MyHeader.vue -------------------------------------------------------------------------------- /src/components/NaviHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/NaviHeader.vue -------------------------------------------------------------------------------- /src/components/NightSky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/NightSky.vue -------------------------------------------------------------------------------- /src/components/Pop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Pop.vue -------------------------------------------------------------------------------- /src/components/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Register.vue -------------------------------------------------------------------------------- /src/components/Waiting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/components/Waiting.vue -------------------------------------------------------------------------------- /src/fonts/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/demo.css -------------------------------------------------------------------------------- /src/fonts/demo_fontclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/demo_fontclass.html -------------------------------------------------------------------------------- /src/fonts/demo_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/demo_symbol.html -------------------------------------------------------------------------------- /src/fonts/demo_unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/demo_unicode.html -------------------------------------------------------------------------------- /src/fonts/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.css -------------------------------------------------------------------------------- /src/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/fonts/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.js -------------------------------------------------------------------------------- /src/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.svg -------------------------------------------------------------------------------- /src/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/img/favicon.ico -------------------------------------------------------------------------------- /src/img/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/img/me.jpg -------------------------------------------------------------------------------- /src/js/cookieUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/cookieUtil.js -------------------------------------------------------------------------------- /src/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/highlight.min.js -------------------------------------------------------------------------------- /src/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/jquery.min.js -------------------------------------------------------------------------------- /src/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/login.js -------------------------------------------------------------------------------- /src/js/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/marked.min.js -------------------------------------------------------------------------------- /src/js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/js/validate.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/main.js -------------------------------------------------------------------------------- /src/style/btn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/btn.css -------------------------------------------------------------------------------- /src/style/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/common.scss -------------------------------------------------------------------------------- /src/style/components/Account.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Account.scss -------------------------------------------------------------------------------- /src/style/components/Archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Archive.scss -------------------------------------------------------------------------------- /src/style/components/Article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Article.scss -------------------------------------------------------------------------------- /src/style/components/ArticleList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/ArticleList.scss -------------------------------------------------------------------------------- /src/style/components/Console.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Console.scss -------------------------------------------------------------------------------- /src/style/components/Editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Editor.scss -------------------------------------------------------------------------------- /src/style/components/Index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Index.scss -------------------------------------------------------------------------------- /src/style/components/Links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Links.scss -------------------------------------------------------------------------------- /src/style/components/Login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Login.scss -------------------------------------------------------------------------------- /src/style/components/MyFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/MyFooter.scss -------------------------------------------------------------------------------- /src/style/components/MyHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/MyHeader.scss -------------------------------------------------------------------------------- /src/style/components/NaviHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/NaviHeader.scss -------------------------------------------------------------------------------- /src/style/components/NightSky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/NightSky.scss -------------------------------------------------------------------------------- /src/style/components/Pop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Pop.scss -------------------------------------------------------------------------------- /src/style/components/Register.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Register.scss -------------------------------------------------------------------------------- /src/style/components/Waiting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/components/Waiting.scss -------------------------------------------------------------------------------- /src/style/lib/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/lib/highlight.css -------------------------------------------------------------------------------- /src/style/lib/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/lib/iconfont.css -------------------------------------------------------------------------------- /src/style/lib/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/lib/markdown.css -------------------------------------------------------------------------------- /src/style/lib/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/lib/normalize.css -------------------------------------------------------------------------------- /src/style/mediaQuery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/mediaQuery.scss -------------------------------------------------------------------------------- /src/style/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/mixins.scss -------------------------------------------------------------------------------- /src/style/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/style/variables.scss -------------------------------------------------------------------------------- /src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/vuex/actions.js -------------------------------------------------------------------------------- /src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/vuex/getters.js -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/src/vuex/store.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tywei90/CMS-of-Blog_Production/HEAD/webpack.config.js --------------------------------------------------------------------------------