├── layout ├── _partial │ ├── loading.ejs │ ├── post │ │ ├── tag.ejs │ │ ├── date.ejs │ │ ├── reward-btn.ejs │ │ ├── category.ejs │ │ ├── updated.ejs │ │ ├── share-fab.ejs │ │ ├── comment.ejs │ │ ├── head-meta.ejs │ │ ├── toc.ejs │ │ ├── copyright.ejs │ │ ├── title.ejs │ │ ├── nav.ejs │ │ ├── reward.ejs │ │ └── share.ejs │ ├── paginator.ejs │ ├── plugins │ │ ├── page-visit.ejs │ │ ├── uyan.ejs │ │ ├── tajs.ejs │ │ ├── google-analytics.ejs │ │ ├── site-visit.ejs │ │ ├── disqus.ejs │ │ ├── dynamic-title.ejs │ │ ├── gitment.ejs │ │ ├── mathjax.ejs │ │ ├── baidu.ejs │ │ ├── gitalk.ejs │ │ ├── valine.ejs │ │ └── hyper-comments.ejs │ ├── after-footer.ejs │ ├── archive.ejs │ ├── search.ejs │ ├── script.ejs │ ├── post.ejs │ ├── index-item.ejs │ ├── footer.ejs │ ├── menu.ejs │ ├── tags-bar.ejs │ ├── header.ejs │ └── head.ejs ├── tag.ejs ├── category.ejs ├── post.ejs ├── layout.ejs ├── index.ejs ├── tags.ejs ├── categories.ejs ├── archive.ejs └── page.ejs ├── source ├── img │ ├── cc.png │ ├── alipay.jpg │ ├── avatar.jpg │ ├── brand.jpg │ ├── wechat.jpg │ ├── img-err.png │ └── img-loading.png ├── css │ ├── fonts │ │ ├── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ ├── Roboto-Thin.woff2 │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ └── Roboto-Regular.woff2 │ │ └── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── _partial │ │ ├── gotop.less │ │ ├── loading.less │ │ ├── lightbox.less │ │ ├── roboto.less │ │ ├── archives.less │ │ ├── header.less │ │ ├── reward.less │ │ ├── tags.less │ │ ├── search.less │ │ ├── postlist.less │ │ ├── waves.less │ │ ├── variable.less │ │ ├── share.less │ │ ├── highlight.less │ │ ├── layout.less │ │ ├── page.less │ │ └── article.less │ ├── _plugin │ │ └── valine.less │ └── style.less └── js │ ├── search.min.js │ ├── search.js │ ├── main.min.js │ └── main.js ├── .editorconfig ├── languages ├── zh-TW.yml ├── zh-CN.yml ├── ja.yml ├── nl-NL └── en.yml ├── package.json ├── README.md ├── LICENSE ├── scripts └── plugins.js └── _config.yml /layout/_partial/loading.ejs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /source/img/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/cc.png -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('tags', { 2 | title: theme.tags_title + ': '+ page.tag 3 | }) %> 4 | -------------------------------------------------------------------------------- /source/img/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/alipay.jpg -------------------------------------------------------------------------------- /source/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/avatar.jpg -------------------------------------------------------------------------------- /source/img/brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/brand.jpg -------------------------------------------------------------------------------- /source/img/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/wechat.jpg -------------------------------------------------------------------------------- /source/img/img-err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/img-err.png -------------------------------------------------------------------------------- /source/img/img-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/img/img-loading.png -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('categories', { 2 | title: theme.categories_title + ': ' + page.category 3 | }) %> 4 | -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /source/css/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /source/css/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /source/css/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/css/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/css/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/css/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yscoder/hexo-theme-indigo/HEAD/source/css/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /layout/_partial/post/tag.ejs: -------------------------------------------------------------------------------- 1 | <% if (post.tags && post.tags.length){ %> 2 | <%- list_tags(post.tags, { 3 | show_count: false, 4 | class: 'article-tag' 5 | }) %> 6 | <% } %> -------------------------------------------------------------------------------- /layout/_partial/post/date.ejs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 4 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [*.{yml,json}] 11 | indent_size = 2 12 | -------------------------------------------------------------------------------- /layout/_partial/post/reward-btn.ejs: -------------------------------------------------------------------------------- 1 | <% if(page.reward){ %> 2 |3 | 6 | 9 |
10 | <% } %> 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hexo-theme-material-indigo", 3 | "version": "1.7.2", 4 | "description": "Material Design theme for Hexo.", 5 | "keywords": [ 6 | "hexo", 7 | "theme", 8 | "material design" 9 | ], 10 | "author": { 11 | "name": "yusen", 12 | "email": "634206017@qq.com" 13 | }, 14 | "license": "MIT", 15 | "repository": { 16 | "url": "git+https://github.com/yscoder/hexo-theme-indigo.git", 17 | "type": "git" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /layout/_partial/plugins/disqus.ejs: -------------------------------------------------------------------------------- 1 | <% if (theme.disqus_shortname){ %> 2 |2 | <% if(theme.postMessage || theme.show_last_updated) { %> 3 |17 | -------------------------------------------------------------------------------- /layout/_partial/search.ejs: -------------------------------------------------------------------------------- 1 | 2 |4 | <%- partial('updated') %> 5 | <% if(theme.postMessage) {%> 6 | <%- _.template(theme.postMessage)(locals) %> 7 | <% } %> 8 |9 | <% } %> 10 | 16 |
}<\/p>/g, '
@([\w-]+){<\/p>/g, function(match, $1){ 14 | return '
<%- config.author %>
23 |<%- config.subtitle %>
24 |<%- theme.about %>
25 |Results not found!
Results not found!