├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── layout ├── _views │ ├── foot.jade │ ├── head.jade │ ├── main.jade │ ├── menu.jade │ ├── nav.jade │ └── post.jade ├── archive.jade ├── category.jade ├── index.jade ├── page.jade ├── post.jade └── tag.jade ├── package.json └── source ├── css ├── _main-r.styl ├── _var.styl ├── base │ ├── _base.styl │ ├── _font.styl │ ├── _mixin.styl │ ├── _reset.styl │ └── _util.styl ├── main.styl ├── partial │ ├── _main.styl │ └── _post.styl └── vendor │ ├── _echo.styl │ ├── _highlight.styl │ └── _normalize.styl └── fonts ├── icon.eot ├── icon.svg ├── icon.ttf └── icon.woff /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/_config.yml -------------------------------------------------------------------------------- /layout/_views/foot.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/foot.jade -------------------------------------------------------------------------------- /layout/_views/head.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/head.jade -------------------------------------------------------------------------------- /layout/_views/main.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/main.jade -------------------------------------------------------------------------------- /layout/_views/menu.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/menu.jade -------------------------------------------------------------------------------- /layout/_views/nav.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/nav.jade -------------------------------------------------------------------------------- /layout/_views/post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/_views/post.jade -------------------------------------------------------------------------------- /layout/archive.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/archive.jade -------------------------------------------------------------------------------- /layout/category.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/category.jade -------------------------------------------------------------------------------- /layout/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/index.jade -------------------------------------------------------------------------------- /layout/page.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/page.jade -------------------------------------------------------------------------------- /layout/post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/post.jade -------------------------------------------------------------------------------- /layout/tag.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/layout/tag.jade -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/package.json -------------------------------------------------------------------------------- /source/css/_main-r.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/_main-r.styl -------------------------------------------------------------------------------- /source/css/_var.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/_var.styl -------------------------------------------------------------------------------- /source/css/base/_base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/base/_base.styl -------------------------------------------------------------------------------- /source/css/base/_font.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/base/_font.styl -------------------------------------------------------------------------------- /source/css/base/_mixin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/base/_mixin.styl -------------------------------------------------------------------------------- /source/css/base/_reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/base/_reset.styl -------------------------------------------------------------------------------- /source/css/base/_util.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/base/_util.styl -------------------------------------------------------------------------------- /source/css/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/main.styl -------------------------------------------------------------------------------- /source/css/partial/_main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/partial/_main.styl -------------------------------------------------------------------------------- /source/css/partial/_post.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/partial/_post.styl -------------------------------------------------------------------------------- /source/css/vendor/_echo.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/vendor/_echo.styl -------------------------------------------------------------------------------- /source/css/vendor/_highlight.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/vendor/_highlight.styl -------------------------------------------------------------------------------- /source/css/vendor/_normalize.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/css/vendor/_normalize.styl -------------------------------------------------------------------------------- /source/fonts/icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/fonts/icon.eot -------------------------------------------------------------------------------- /source/fonts/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/fonts/icon.svg -------------------------------------------------------------------------------- /source/fonts/icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/fonts/icon.ttf -------------------------------------------------------------------------------- /source/fonts/icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17/hexo-theme-strict/HEAD/source/fonts/icon.woff --------------------------------------------------------------------------------