├── LICENSE ├── README.md ├── archetypes └── default.md ├── config.toml ├── i18n ├── en.yaml └── zh.yaml ├── layouts ├── _default │ ├── baseof.html │ ├── single.html │ └── terms.html ├── index.html ├── partials │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── pagination.html │ ├── post │ │ ├── category.html │ │ ├── date.html │ │ ├── prenext.html │ │ ├── readtime.html │ │ └── tags.html │ ├── post_list.html │ ├── post_simple_list.html │ ├── script.html │ ├── sidebar.html │ ├── sidebar │ │ ├── author.html │ │ ├── link.html │ │ ├── rss.html │ │ ├── social.html │ │ ├── state.html │ │ ├── stats.html │ │ └── toc.html │ └── widgets │ │ ├── baidushare.html │ │ ├── comment.html │ │ ├── duoshuoshare.html │ │ ├── search.html │ │ └── weixin.html ├── section │ └── list.html ├── sitemap.xml └── taxonomy │ ├── category.html │ └── tag.html └── static ├── css ├── main.css └── syntax.css ├── img ├── apple-touch-icon.png ├── author.jpg ├── author.svg ├── avatar.gif ├── avatar.png ├── cc-by-nc-nd.svg ├── cc-by-nc-sa.svg ├── cc-by-nc.svg ├── cc-by-nd.svg ├── cc-by-sa.svg ├── cc-by.svg ├── cc-zero.svg ├── favicon.ico ├── loading.gif ├── logo.png ├── placeholder.gif ├── quote-l.svg ├── quote-r.svg └── searchicon.png └── js ├── affix.js ├── bootstrap.js ├── hook-duoshuo.js ├── motion.js ├── post-details.js ├── schemes └── pisces.js ├── scrollspy.js ├── search.js ├── toc.js ├── utils.js └── vendor ├── 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 ├── fastclick └── lib │ └── fastclick.min.js ├── font-awesome ├── css │ ├── font-awesome.css │ ├── font-awesome.css.map │ └── font-awesome.min.css └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── jquery └── index.js ├── jquery_lazyload ├── README.md ├── jquery.lazyload.js └── jquery.scrollstop.js ├── ua-parser-js └── dist │ ├── ua-parser.min.js │ └── ua-parser.pack.js └── velocity ├── velocity.min.js └── velocity.ui.min.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/config.toml -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/zh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/i18n/zh.yaml -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/post/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post/category.html -------------------------------------------------------------------------------- /layouts/partials/post/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post/date.html -------------------------------------------------------------------------------- /layouts/partials/post/prenext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post/prenext.html -------------------------------------------------------------------------------- /layouts/partials/post/readtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post/readtime.html -------------------------------------------------------------------------------- /layouts/partials/post/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post/tags.html -------------------------------------------------------------------------------- /layouts/partials/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post_list.html -------------------------------------------------------------------------------- /layouts/partials/post_simple_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/post_simple_list.html -------------------------------------------------------------------------------- /layouts/partials/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/script.html -------------------------------------------------------------------------------- /layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/author.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/link.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/rss.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/social.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/state.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/stats.html -------------------------------------------------------------------------------- /layouts/partials/sidebar/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/sidebar/toc.html -------------------------------------------------------------------------------- /layouts/partials/widgets/baidushare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/widgets/baidushare.html -------------------------------------------------------------------------------- /layouts/partials/widgets/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/widgets/comment.html -------------------------------------------------------------------------------- /layouts/partials/widgets/duoshuoshare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/widgets/duoshuoshare.html -------------------------------------------------------------------------------- /layouts/partials/widgets/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/widgets/search.html -------------------------------------------------------------------------------- /layouts/partials/widgets/weixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/partials/widgets/weixin.html -------------------------------------------------------------------------------- /layouts/section/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/section/list.html -------------------------------------------------------------------------------- /layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/sitemap.xml -------------------------------------------------------------------------------- /layouts/taxonomy/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/taxonomy/category.html -------------------------------------------------------------------------------- /layouts/taxonomy/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/layouts/taxonomy/tag.html -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/css/syntax.css -------------------------------------------------------------------------------- /static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/author.jpg -------------------------------------------------------------------------------- /static/img/author.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/author.svg -------------------------------------------------------------------------------- /static/img/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/avatar.gif -------------------------------------------------------------------------------- /static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/avatar.png -------------------------------------------------------------------------------- /static/img/cc-by-nc-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by-nc-nd.svg -------------------------------------------------------------------------------- /static/img/cc-by-nc-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by-nc-sa.svg -------------------------------------------------------------------------------- /static/img/cc-by-nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by-nc.svg -------------------------------------------------------------------------------- /static/img/cc-by-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by-nd.svg -------------------------------------------------------------------------------- /static/img/cc-by-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by-sa.svg -------------------------------------------------------------------------------- /static/img/cc-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-by.svg -------------------------------------------------------------------------------- /static/img/cc-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/cc-zero.svg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/placeholder.gif -------------------------------------------------------------------------------- /static/img/quote-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/quote-l.svg -------------------------------------------------------------------------------- /static/img/quote-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/quote-r.svg -------------------------------------------------------------------------------- /static/img/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/img/searchicon.png -------------------------------------------------------------------------------- /static/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/affix.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/hook-duoshuo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/hook-duoshuo.js -------------------------------------------------------------------------------- /static/js/motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/motion.js -------------------------------------------------------------------------------- /static/js/post-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/post-details.js -------------------------------------------------------------------------------- /static/js/schemes/pisces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/schemes/pisces.js -------------------------------------------------------------------------------- /static/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/scrollspy.js -------------------------------------------------------------------------------- /static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/search.js -------------------------------------------------------------------------------- /static/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/toc.js -------------------------------------------------------------------------------- /static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/utils.js -------------------------------------------------------------------------------- /static/js/vendor/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/blank.gif -------------------------------------------------------------------------------- /static/js/vendor/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /static/js/vendor/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /static/js/vendor/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /static/js/vendor/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /static/js/vendor/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/jquery.fancybox-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/jquery.fancybox-buttons.css -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/jquery.fancybox-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/jquery.fancybox-buttons.js -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/jquery.fancybox-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/jquery.fancybox-media.js -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/jquery.fancybox-thumbs.css -------------------------------------------------------------------------------- /static/js/vendor/fancybox/helpers/jquery.fancybox-thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/helpers/jquery.fancybox-thumbs.js -------------------------------------------------------------------------------- /static/js/vendor/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /static/js/vendor/fancybox/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/jquery.fancybox.js -------------------------------------------------------------------------------- /static/js/vendor/fancybox/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fancybox/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /static/js/vendor/fastclick/lib/fastclick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/fastclick/lib/fastclick.min.js -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/js/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/js/vendor/jquery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/jquery/index.js -------------------------------------------------------------------------------- /static/js/vendor/jquery_lazyload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/jquery_lazyload/README.md -------------------------------------------------------------------------------- /static/js/vendor/jquery_lazyload/jquery.lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/jquery_lazyload/jquery.lazyload.js -------------------------------------------------------------------------------- /static/js/vendor/jquery_lazyload/jquery.scrollstop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/jquery_lazyload/jquery.scrollstop.js -------------------------------------------------------------------------------- /static/js/vendor/ua-parser-js/dist/ua-parser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/ua-parser-js/dist/ua-parser.min.js -------------------------------------------------------------------------------- /static/js/vendor/ua-parser-js/dist/ua-parser.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/ua-parser-js/dist/ua-parser.pack.js -------------------------------------------------------------------------------- /static/js/vendor/velocity/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/velocity/velocity.min.js -------------------------------------------------------------------------------- /static/js/vendor/velocity/velocity.ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtfly/hugo-theme-next/HEAD/static/js/vendor/velocity/velocity.ui.min.js --------------------------------------------------------------------------------