├── .gitignore ├── README.md ├── _config.yml ├── _partial ├── aboutme.pug ├── footer.pug ├── gallery.pug ├── google-analytics.pug ├── header.pug ├── layout.pug └── post_footer.pug ├── languages ├── en.yml ├── ja.yml ├── zh-CN.yml └── zh-TW.yml ├── layout ├── archive.pug ├── index.pug ├── post.pug └── tag.pug ├── package.json ├── screenshot.jpg ├── screenshot2.jpg ├── scripts └── localize.js └── source ├── fancybox ├── blank.gif ├── fancybox_loading.gif ├── fancybox_loading@2x.gif ├── fancybox_overlay.png ├── fancybox_sprite.png ├── fancybox_sprite@2x.png ├── helpers │ ├── fancybox_buttons.png │ ├── jquery.fancybox-buttons.css │ ├── jquery.fancybox-buttons.js │ ├── jquery.fancybox-media.js │ ├── jquery.fancybox-thumbs.css │ └── jquery.fancybox-thumbs.js ├── jquery.fancybox.css ├── jquery.fancybox.js └── jquery.fancybox.pack.js ├── images ├── avatar.png ├── check.svg └── socials │ ├── email.svg │ ├── facebook.svg │ ├── flickr.svg │ ├── github.svg │ ├── instagram.svg │ ├── wechat.svg │ └── weibo.svg ├── script ├── index.js ├── jquery.min.js └── post.js └── styles ├── _extend.styl ├── _partial ├── aboutme.styl ├── archive.styl ├── article.styl ├── footer.styl ├── header.styl ├── highlight.styl └── theme.styl ├── _variables.styl └── site.styl /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_config.yml -------------------------------------------------------------------------------- /_partial/aboutme.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/aboutme.pug -------------------------------------------------------------------------------- /_partial/footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/footer.pug -------------------------------------------------------------------------------- /_partial/gallery.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/gallery.pug -------------------------------------------------------------------------------- /_partial/google-analytics.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/google-analytics.pug -------------------------------------------------------------------------------- /_partial/header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/header.pug -------------------------------------------------------------------------------- /_partial/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/layout.pug -------------------------------------------------------------------------------- /_partial/post_footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/_partial/post_footer.pug -------------------------------------------------------------------------------- /languages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/languages/en.yml -------------------------------------------------------------------------------- /languages/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/languages/ja.yml -------------------------------------------------------------------------------- /languages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/languages/zh-CN.yml -------------------------------------------------------------------------------- /languages/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/languages/zh-TW.yml -------------------------------------------------------------------------------- /layout/archive.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/layout/archive.pug -------------------------------------------------------------------------------- /layout/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/layout/index.pug -------------------------------------------------------------------------------- /layout/post.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/layout/post.pug -------------------------------------------------------------------------------- /layout/tag.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/layout/tag.pug -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/screenshot2.jpg -------------------------------------------------------------------------------- /scripts/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/scripts/localize.js -------------------------------------------------------------------------------- /source/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/blank.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /source/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /source/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /source/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/jquery.fancybox-buttons.css -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/jquery.fancybox-buttons.js -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/jquery.fancybox-media.js -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/jquery.fancybox-thumbs.css -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/helpers/jquery.fancybox-thumbs.js -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/jquery.fancybox.js -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/fancybox/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /source/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/avatar.png -------------------------------------------------------------------------------- /source/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/check.svg -------------------------------------------------------------------------------- /source/images/socials/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/email.svg -------------------------------------------------------------------------------- /source/images/socials/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/facebook.svg -------------------------------------------------------------------------------- /source/images/socials/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/flickr.svg -------------------------------------------------------------------------------- /source/images/socials/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/github.svg -------------------------------------------------------------------------------- /source/images/socials/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/instagram.svg -------------------------------------------------------------------------------- /source/images/socials/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/wechat.svg -------------------------------------------------------------------------------- /source/images/socials/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/images/socials/weibo.svg -------------------------------------------------------------------------------- /source/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/script/index.js -------------------------------------------------------------------------------- /source/script/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/script/jquery.min.js -------------------------------------------------------------------------------- /source/script/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/script/post.js -------------------------------------------------------------------------------- /source/styles/_extend.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_extend.styl -------------------------------------------------------------------------------- /source/styles/_partial/aboutme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/aboutme.styl -------------------------------------------------------------------------------- /source/styles/_partial/archive.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/archive.styl -------------------------------------------------------------------------------- /source/styles/_partial/article.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/article.styl -------------------------------------------------------------------------------- /source/styles/_partial/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/footer.styl -------------------------------------------------------------------------------- /source/styles/_partial/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/header.styl -------------------------------------------------------------------------------- /source/styles/_partial/highlight.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/highlight.styl -------------------------------------------------------------------------------- /source/styles/_partial/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_partial/theme.styl -------------------------------------------------------------------------------- /source/styles/_variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/_variables.styl -------------------------------------------------------------------------------- /source/styles/site.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gary-Shen/hexo-theme-bear/HEAD/source/styles/site.styl --------------------------------------------------------------------------------