├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── layout ├── _partial │ ├── after-footer.ejs │ ├── archive-post.ejs │ ├── archive.ejs │ ├── article.ejs │ ├── baidu_tongji.ejs │ ├── footer.ejs │ ├── google_analytics.ejs │ ├── head.ejs │ ├── header.ejs │ ├── left-col.ejs │ ├── mathjax.ejs │ ├── mobile-nav.ejs │ ├── post │ │ ├── category.ejs │ │ ├── date.ejs │ │ ├── duoshuo.ejs │ │ ├── nav.ejs │ │ ├── tag.ejs │ │ ├── title.ejs │ │ └── viewCounter.ejs │ └── search.ejs ├── _widget │ └── Counter.ejs ├── archive.ejs ├── category.ejs ├── index.ejs ├── layout.ejs ├── page.ejs ├── post.ejs └── tag.ejs └── source ├── css ├── _extend.styl ├── _partial │ ├── archive.styl │ ├── article.styl │ ├── footer.styl │ ├── header.styl │ ├── highlight.styl │ ├── instagram.styl │ ├── main.styl │ ├── mobile-slider.styl │ ├── mobile.styl │ ├── page.styl │ ├── scroll.styl │ ├── share.styl │ ├── tagcloud.styl │ └── wheelmenu.styl ├── _util │ ├── grid.styl │ └── mixin.styl ├── _variables.styl ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.svgz │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff └── style.styl ├── 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 ├── img ├── coderwall.png ├── delicious.png ├── douban.png ├── facebook.png ├── favicon.ico ├── github.png ├── google.png ├── img-err.png ├── img-loading.png ├── linkedin.png ├── mail.png ├── pinboard.png ├── pinterest.png ├── rss.png ├── scrollbar_arrow.png ├── search.png ├── stackoverflow.png ├── twitter.png ├── weibo.png └── zhihu.png └── js ├── Counter.js ├── instagram.js ├── jquery.lazyload.js ├── main.js ├── mobile.js ├── particles.js └── pc.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/_config.yml -------------------------------------------------------------------------------- /layout/_partial/after-footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/after-footer.ejs -------------------------------------------------------------------------------- /layout/_partial/archive-post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/archive-post.ejs -------------------------------------------------------------------------------- /layout/_partial/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/archive.ejs -------------------------------------------------------------------------------- /layout/_partial/article.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/article.ejs -------------------------------------------------------------------------------- /layout/_partial/baidu_tongji.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/baidu_tongji.ejs -------------------------------------------------------------------------------- /layout/_partial/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/footer.ejs -------------------------------------------------------------------------------- /layout/_partial/google_analytics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/google_analytics.ejs -------------------------------------------------------------------------------- /layout/_partial/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/head.ejs -------------------------------------------------------------------------------- /layout/_partial/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/header.ejs -------------------------------------------------------------------------------- /layout/_partial/left-col.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/left-col.ejs -------------------------------------------------------------------------------- /layout/_partial/mathjax.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/mathjax.ejs -------------------------------------------------------------------------------- /layout/_partial/mobile-nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/mobile-nav.ejs -------------------------------------------------------------------------------- /layout/_partial/post/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/category.ejs -------------------------------------------------------------------------------- /layout/_partial/post/date.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/date.ejs -------------------------------------------------------------------------------- /layout/_partial/post/duoshuo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/duoshuo.ejs -------------------------------------------------------------------------------- /layout/_partial/post/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/nav.ejs -------------------------------------------------------------------------------- /layout/_partial/post/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/tag.ejs -------------------------------------------------------------------------------- /layout/_partial/post/title.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/title.ejs -------------------------------------------------------------------------------- /layout/_partial/post/viewCounter.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/post/viewCounter.ejs -------------------------------------------------------------------------------- /layout/_partial/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_partial/search.ejs -------------------------------------------------------------------------------- /layout/_widget/Counter.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/_widget/Counter.ejs -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/archive.ejs -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/category.ejs -------------------------------------------------------------------------------- /layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/index.ejs -------------------------------------------------------------------------------- /layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/layout.ejs -------------------------------------------------------------------------------- /layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/page.ejs -------------------------------------------------------------------------------- /layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/post.ejs -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/layout/tag.ejs -------------------------------------------------------------------------------- /source/css/_extend.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_extend.styl -------------------------------------------------------------------------------- /source/css/_partial/archive.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/archive.styl -------------------------------------------------------------------------------- /source/css/_partial/article.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/article.styl -------------------------------------------------------------------------------- /source/css/_partial/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/footer.styl -------------------------------------------------------------------------------- /source/css/_partial/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/header.styl -------------------------------------------------------------------------------- /source/css/_partial/highlight.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/highlight.styl -------------------------------------------------------------------------------- /source/css/_partial/instagram.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/instagram.styl -------------------------------------------------------------------------------- /source/css/_partial/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/main.styl -------------------------------------------------------------------------------- /source/css/_partial/mobile-slider.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/mobile-slider.styl -------------------------------------------------------------------------------- /source/css/_partial/mobile.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/mobile.styl -------------------------------------------------------------------------------- /source/css/_partial/page.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/page.styl -------------------------------------------------------------------------------- /source/css/_partial/scroll.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/scroll.styl -------------------------------------------------------------------------------- /source/css/_partial/share.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/share.styl -------------------------------------------------------------------------------- /source/css/_partial/tagcloud.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/tagcloud.styl -------------------------------------------------------------------------------- /source/css/_partial/wheelmenu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_partial/wheelmenu.styl -------------------------------------------------------------------------------- /source/css/_util/grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_util/grid.styl -------------------------------------------------------------------------------- /source/css/_util/mixin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_util/mixin.styl -------------------------------------------------------------------------------- /source/css/_variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/_variables.styl -------------------------------------------------------------------------------- /source/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /source/css/fonts/fontawesome-webfont.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/fonts/fontawesome-webfont.svgz -------------------------------------------------------------------------------- /source/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/css/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/css/style.styl -------------------------------------------------------------------------------- /source/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/blank.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /source/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /source/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /source/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /source/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/jquery.fancybox-buttons.css -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/jquery.fancybox-buttons.js -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/jquery.fancybox-media.js -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/jquery.fancybox-thumbs.css -------------------------------------------------------------------------------- /source/fancybox/helpers/jquery.fancybox-thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/helpers/jquery.fancybox-thumbs.js -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/jquery.fancybox.js -------------------------------------------------------------------------------- /source/fancybox/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/fancybox/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /source/img/coderwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/coderwall.png -------------------------------------------------------------------------------- /source/img/delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/delicious.png -------------------------------------------------------------------------------- /source/img/douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/douban.png -------------------------------------------------------------------------------- /source/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/facebook.png -------------------------------------------------------------------------------- /source/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/favicon.ico -------------------------------------------------------------------------------- /source/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/github.png -------------------------------------------------------------------------------- /source/img/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/google.png -------------------------------------------------------------------------------- /source/img/img-err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/img-err.png -------------------------------------------------------------------------------- /source/img/img-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/img-loading.png -------------------------------------------------------------------------------- /source/img/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/linkedin.png -------------------------------------------------------------------------------- /source/img/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/mail.png -------------------------------------------------------------------------------- /source/img/pinboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/pinboard.png -------------------------------------------------------------------------------- /source/img/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/pinterest.png -------------------------------------------------------------------------------- /source/img/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/rss.png -------------------------------------------------------------------------------- /source/img/scrollbar_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/scrollbar_arrow.png -------------------------------------------------------------------------------- /source/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/search.png -------------------------------------------------------------------------------- /source/img/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/stackoverflow.png -------------------------------------------------------------------------------- /source/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/twitter.png -------------------------------------------------------------------------------- /source/img/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/weibo.png -------------------------------------------------------------------------------- /source/img/zhihu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/img/zhihu.png -------------------------------------------------------------------------------- /source/js/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/Counter.js -------------------------------------------------------------------------------- /source/js/instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/instagram.js -------------------------------------------------------------------------------- /source/js/jquery.lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/jquery.lazyload.js -------------------------------------------------------------------------------- /source/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/main.js -------------------------------------------------------------------------------- /source/js/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/mobile.js -------------------------------------------------------------------------------- /source/js/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/particles.js -------------------------------------------------------------------------------- /source/js/pc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preccrep/hexo-theme-jelly/HEAD/source/js/pc.js --------------------------------------------------------------------------------