├── LICENSE ├── README.md ├── _config.yml ├── languages └── default.yml ├── layout ├── _partial │ ├── archive.ejs │ ├── article.ejs │ ├── excerpt.ejs │ ├── footer.ejs │ ├── head.ejs │ ├── header.ejs │ ├── issue.ejs │ ├── oni.ejs │ ├── pagination.ejs │ ├── sidebar.ejs │ └── slideshow.ejs ├── _widget │ ├── author.ejs │ ├── friend_links.ejs │ ├── hot_categories.ejs │ ├── hot_posts.ejs │ ├── hot_tags.ejs │ ├── links.ejs │ ├── random_posts.ejs │ ├── recent_comments.ejs │ ├── recent_posts.ejs │ └── search.ejs ├── archive.ejs ├── categories.ejs ├── category.ejs ├── index.ejs ├── layout.ejs ├── page.ejs ├── page │ ├── 404.ejs │ └── search.ejs ├── post.ejs ├── tag.ejs └── tags.ejs ├── libs ├── .DS_Store └── font-awesome │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── package.json └── source ├── css ├── _article.scss ├── _comment.scss ├── _common.scss ├── _excerpt.scss ├── _header.scss ├── _highlight.scss ├── _mixin.scss ├── _pagination.scss ├── _sidebar.scss ├── _slideshow.scss ├── _variables.scss ├── aos.css ├── bootstrap.min.css └── style.scss ├── fonts ├── .DS_Store ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── imgs ├── .DS_Store ├── avatar.jpg ├── mouse1.cur ├── mouse2.cur ├── oni.mp3 ├── oni │ ├── oni1.jpg │ ├── oni2.jpg │ ├── oni3.jpg │ ├── oni4.jpg │ ├── oni5.jpg │ └── oni6.jpg ├── preview │ ├── preview1.jpg │ ├── preview2.jpg │ ├── preview3.jpg │ └── preview4.jpg ├── slide │ ├── background1.jpg │ ├── background2.jpg │ ├── background3.jpg │ ├── background4.jpg │ ├── background5.jpg │ └── background6.jpg ├── smilies │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── xsbg.gif └── js ├── .DS_Store ├── activate-power-mode.js ├── aos.js ├── blog.js ├── bootstrap-hover-dropdown.min.js ├── bootstrap.min.js ├── comment ├── gitment.js └── leancloud.js ├── highslide ├── graphics │ ├── .DS_Store │ ├── close.png │ ├── closeX.png │ ├── controlbar-black-border.gif │ ├── controlbar-text-buttons.png │ ├── controlbar-white-small.gif │ ├── controlbar-white.gif │ ├── controlbar2.gif │ ├── controlbar3.gif │ ├── controlbar4-hover.gif │ ├── controlbar4.gif │ ├── fullexpand.gif │ ├── geckodimmer.png │ ├── icon.gif │ ├── loader.gif │ ├── loader.white.gif │ ├── outlines │ │ ├── Outlines.psd │ │ ├── beveled.png │ │ ├── drop-shadow.png │ │ ├── glossy-dark.png │ │ ├── outer-glow.png │ │ ├── rounded-black.png │ │ └── rounded-white.png │ ├── resize.gif │ ├── scrollarrows.png │ ├── zoomin.cur │ └── zoomout.cur ├── highslide-full.js ├── highslide-full.min.js ├── highslide-full.packed.js ├── highslide-ie6.css ├── highslide-with-gallery.js ├── highslide-with-gallery.min.js ├── highslide-with-gallery.packed.js ├── highslide-with-html.js ├── highslide-with-html.min.js ├── highslide-with-html.packed.js ├── highslide.css ├── highslide.js ├── highslide.min.js └── highslide.packed.js ├── hs.js ├── jquery.min.js └── oni.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/_config.yml -------------------------------------------------------------------------------- /languages/default.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/_partial/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/archive.ejs -------------------------------------------------------------------------------- /layout/_partial/article.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/article.ejs -------------------------------------------------------------------------------- /layout/_partial/excerpt.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/excerpt.ejs -------------------------------------------------------------------------------- /layout/_partial/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/footer.ejs -------------------------------------------------------------------------------- /layout/_partial/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/head.ejs -------------------------------------------------------------------------------- /layout/_partial/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/header.ejs -------------------------------------------------------------------------------- /layout/_partial/issue.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/issue.ejs -------------------------------------------------------------------------------- /layout/_partial/oni.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/oni.ejs -------------------------------------------------------------------------------- /layout/_partial/pagination.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/pagination.ejs -------------------------------------------------------------------------------- /layout/_partial/sidebar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/sidebar.ejs -------------------------------------------------------------------------------- /layout/_partial/slideshow.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_partial/slideshow.ejs -------------------------------------------------------------------------------- /layout/_widget/author.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/author.ejs -------------------------------------------------------------------------------- /layout/_widget/friend_links.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/friend_links.ejs -------------------------------------------------------------------------------- /layout/_widget/hot_categories.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/_widget/hot_posts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/hot_posts.ejs -------------------------------------------------------------------------------- /layout/_widget/hot_tags.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/hot_tags.ejs -------------------------------------------------------------------------------- /layout/_widget/links.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/links.ejs -------------------------------------------------------------------------------- /layout/_widget/random_posts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/random_posts.ejs -------------------------------------------------------------------------------- /layout/_widget/recent_comments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/recent_comments.ejs -------------------------------------------------------------------------------- /layout/_widget/recent_posts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/recent_posts.ejs -------------------------------------------------------------------------------- /layout/_widget/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/_widget/search.ejs -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/archive.ejs -------------------------------------------------------------------------------- /layout/categories.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/categories.ejs -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/category.ejs -------------------------------------------------------------------------------- /layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/index.ejs -------------------------------------------------------------------------------- /layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/layout.ejs -------------------------------------------------------------------------------- /layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/page.ejs -------------------------------------------------------------------------------- /layout/page/404.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layout/page/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/page/search.ejs -------------------------------------------------------------------------------- /layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/post.ejs -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/tag.ejs -------------------------------------------------------------------------------- /layout/tags.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/layout/tags.ejs -------------------------------------------------------------------------------- /libs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/.DS_Store -------------------------------------------------------------------------------- /libs/font-awesome/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_animated.scss -------------------------------------------------------------------------------- /libs/font-awesome/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_bordered-pulled.scss -------------------------------------------------------------------------------- /libs/font-awesome/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_core.scss -------------------------------------------------------------------------------- /libs/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_fixed-width.scss -------------------------------------------------------------------------------- /libs/font-awesome/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_icons.scss -------------------------------------------------------------------------------- /libs/font-awesome/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_larger.scss -------------------------------------------------------------------------------- /libs/font-awesome/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_list.scss -------------------------------------------------------------------------------- /libs/font-awesome/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_mixins.scss -------------------------------------------------------------------------------- /libs/font-awesome/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_path.scss -------------------------------------------------------------------------------- /libs/font-awesome/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_rotated-flipped.scss -------------------------------------------------------------------------------- /libs/font-awesome/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_screen-reader.scss -------------------------------------------------------------------------------- /libs/font-awesome/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_stacked.scss -------------------------------------------------------------------------------- /libs/font-awesome/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/_variables.scss -------------------------------------------------------------------------------- /libs/font-awesome/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/libs/font-awesome/font-awesome.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/package.json -------------------------------------------------------------------------------- /source/css/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_article.scss -------------------------------------------------------------------------------- /source/css/_comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_comment.scss -------------------------------------------------------------------------------- /source/css/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_common.scss -------------------------------------------------------------------------------- /source/css/_excerpt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_excerpt.scss -------------------------------------------------------------------------------- /source/css/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_header.scss -------------------------------------------------------------------------------- /source/css/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_highlight.scss -------------------------------------------------------------------------------- /source/css/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_mixin.scss -------------------------------------------------------------------------------- /source/css/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_pagination.scss -------------------------------------------------------------------------------- /source/css/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_sidebar.scss -------------------------------------------------------------------------------- /source/css/_slideshow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_slideshow.scss -------------------------------------------------------------------------------- /source/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/_variables.scss -------------------------------------------------------------------------------- /source/css/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/aos.css -------------------------------------------------------------------------------- /source/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/bootstrap.min.css -------------------------------------------------------------------------------- /source/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/css/style.scss -------------------------------------------------------------------------------- /source/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/.DS_Store -------------------------------------------------------------------------------- /source/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /source/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /source/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /source/imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/.DS_Store -------------------------------------------------------------------------------- /source/imgs/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/avatar.jpg -------------------------------------------------------------------------------- /source/imgs/mouse1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/mouse1.cur -------------------------------------------------------------------------------- /source/imgs/mouse2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/mouse2.cur -------------------------------------------------------------------------------- /source/imgs/oni.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni.mp3 -------------------------------------------------------------------------------- /source/imgs/oni/oni1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni1.jpg -------------------------------------------------------------------------------- /source/imgs/oni/oni2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni2.jpg -------------------------------------------------------------------------------- /source/imgs/oni/oni3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni3.jpg -------------------------------------------------------------------------------- /source/imgs/oni/oni4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni4.jpg -------------------------------------------------------------------------------- /source/imgs/oni/oni5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni5.jpg -------------------------------------------------------------------------------- /source/imgs/oni/oni6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/oni/oni6.jpg -------------------------------------------------------------------------------- /source/imgs/preview/preview1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/preview/preview1.jpg -------------------------------------------------------------------------------- /source/imgs/preview/preview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/preview/preview2.jpg -------------------------------------------------------------------------------- /source/imgs/preview/preview3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/preview/preview3.jpg -------------------------------------------------------------------------------- /source/imgs/preview/preview4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/preview/preview4.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background1.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background2.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background3.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background4.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background5.jpg -------------------------------------------------------------------------------- /source/imgs/slide/background6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/slide/background6.jpg -------------------------------------------------------------------------------- /source/imgs/smilies/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/1.png -------------------------------------------------------------------------------- /source/imgs/smilies/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/10.png -------------------------------------------------------------------------------- /source/imgs/smilies/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/11.png -------------------------------------------------------------------------------- /source/imgs/smilies/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/12.png -------------------------------------------------------------------------------- /source/imgs/smilies/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/13.png -------------------------------------------------------------------------------- /source/imgs/smilies/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/14.png -------------------------------------------------------------------------------- /source/imgs/smilies/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/15.png -------------------------------------------------------------------------------- /source/imgs/smilies/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/16.png -------------------------------------------------------------------------------- /source/imgs/smilies/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/17.png -------------------------------------------------------------------------------- /source/imgs/smilies/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/18.png -------------------------------------------------------------------------------- /source/imgs/smilies/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/19.png -------------------------------------------------------------------------------- /source/imgs/smilies/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/2.png -------------------------------------------------------------------------------- /source/imgs/smilies/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/20.png -------------------------------------------------------------------------------- /source/imgs/smilies/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/21.png -------------------------------------------------------------------------------- /source/imgs/smilies/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/22.png -------------------------------------------------------------------------------- /source/imgs/smilies/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/23.png -------------------------------------------------------------------------------- /source/imgs/smilies/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/24.png -------------------------------------------------------------------------------- /source/imgs/smilies/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/25.png -------------------------------------------------------------------------------- /source/imgs/smilies/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/3.png -------------------------------------------------------------------------------- /source/imgs/smilies/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/4.png -------------------------------------------------------------------------------- /source/imgs/smilies/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/5.png -------------------------------------------------------------------------------- /source/imgs/smilies/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/6.png -------------------------------------------------------------------------------- /source/imgs/smilies/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/7.png -------------------------------------------------------------------------------- /source/imgs/smilies/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/8.png -------------------------------------------------------------------------------- /source/imgs/smilies/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/smilies/9.png -------------------------------------------------------------------------------- /source/imgs/xsbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/imgs/xsbg.gif -------------------------------------------------------------------------------- /source/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/.DS_Store -------------------------------------------------------------------------------- /source/js/activate-power-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/activate-power-mode.js -------------------------------------------------------------------------------- /source/js/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/aos.js -------------------------------------------------------------------------------- /source/js/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/blog.js -------------------------------------------------------------------------------- /source/js/bootstrap-hover-dropdown.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/bootstrap.min.js -------------------------------------------------------------------------------- /source/js/comment/gitment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/comment/gitment.js -------------------------------------------------------------------------------- /source/js/comment/leancloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/comment/leancloud.js -------------------------------------------------------------------------------- /source/js/highslide/graphics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/.DS_Store -------------------------------------------------------------------------------- /source/js/highslide/graphics/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/close.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/closeX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/closeX.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar-black-border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar-black-border.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar-text-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar-text-buttons.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar-white-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar-white-small.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar-white.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar2.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar3.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar4-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar4-hover.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/controlbar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/controlbar4.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/fullexpand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/fullexpand.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/geckodimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/geckodimmer.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/icon.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/loader.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/loader.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/loader.white.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/Outlines.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/Outlines.psd -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/beveled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/beveled.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/drop-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/drop-shadow.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/glossy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/glossy-dark.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/outer-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/outer-glow.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/rounded-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/rounded-black.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/outlines/rounded-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/outlines/rounded-white.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/resize.gif -------------------------------------------------------------------------------- /source/js/highslide/graphics/scrollarrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/scrollarrows.png -------------------------------------------------------------------------------- /source/js/highslide/graphics/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/zoomin.cur -------------------------------------------------------------------------------- /source/js/highslide/graphics/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/graphics/zoomout.cur -------------------------------------------------------------------------------- /source/js/highslide/highslide-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-full.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-full.min.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-full.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-full.packed.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-ie6.css -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-gallery.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-gallery.min.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-gallery.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-gallery.packed.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-html.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-html.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-html.min.js -------------------------------------------------------------------------------- /source/js/highslide/highslide-with-html.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide-with-html.packed.js -------------------------------------------------------------------------------- /source/js/highslide/highslide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide.css -------------------------------------------------------------------------------- /source/js/highslide/highslide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide.js -------------------------------------------------------------------------------- /source/js/highslide/highslide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide.min.js -------------------------------------------------------------------------------- /source/js/highslide/highslide.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/highslide/highslide.packed.js -------------------------------------------------------------------------------- /source/js/hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/hs.js -------------------------------------------------------------------------------- /source/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/jquery.min.js -------------------------------------------------------------------------------- /source/js/oni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZEROKISEKI/hexo-theme-gal/HEAD/source/js/oni.js --------------------------------------------------------------------------------