【例子介绍】Hexo-theme-Fluid博客主题
Fluid是基于Hexo框架开发的一款Material Design风格的主题。该主题相较于其他主题的优势:1、优雅的颜值,使用Material Design风格突出层次感,但又不失简约,让用户能专注于写作;2、提供大量定制化配置项,使每个用户使用该主题都能具有独特的样式;3、响应式页面,适配手机、平板等设备,包括极端的分辨率都能轻松应对;4、主题中少有的整合了LaTeX和mermaid的支持。
【相关图片】
【源码结构】
.
├── hexo-theme-fluid-1.9.4
│ ├── LICENSE
│ ├── README.md
│ ├── README_en.md
│ ├── _config.yml
│ ├── languages
│ │ ├── de.yml
│ │ ├── en.yml
│ │ ├── eo.yml
│ │ ├── es.yml
│ │ ├── ja.yml
│ │ ├── ru.yml
│ │ ├── zh-CN.yml
│ │ ├── zh-HK.yml
│ │ └── zh-TW.yml
│ ├── layout
│ │ ├── 404.ejs
│ │ ├── _partials
│ │ │ ├── archive-list.ejs
│ │ │ ├── category-chains.ejs
│ │ │ ├── category-list.ejs
│ │ │ ├── comments
│ │ │ │ ├── changyan.ejs
│ │ │ │ ├── cusdis.ejs
│ │ │ │ ├── disqus.ejs
│ │ │ │ ├── giscus.ejs
│ │ │ │ ├── gitalk.ejs
│ │ │ │ ├── livere.ejs
│ │ │ │ ├── remark42.ejs
│ │ │ │ ├── twikoo.ejs
│ │ │ │ ├── utterances.ejs
│ │ │ │ ├── valine.ejs
│ │ │ │ └── waline.ejs
│ │ │ ├── comments.ejs
│ │ │ ├── css.ejs
│ │ │ ├── footer
│ │ │ │ ├── beian.ejs
│ │ │ │ └── statistics.ejs
│ │ │ ├── footer.ejs
│ │ │ ├── head.ejs
│ │ │ ├── header
│ │ │ │ ├── banner.ejs
│ │ │ │ └── navigation.ejs
│ │ │ ├── header.ejs
│ │ │ ├── markdown-plugins.ejs
│ │ │ ├── paginator.ejs
│ │ │ ├── plugins
│ │ │ │ ├── analytics.ejs
│ │ │ │ ├── anchorjs.ejs
│ │ │ │ ├── code-widget.ejs
│ │ │ │ ├── encrypt.ejs
│ │ │ │ ├── fancybox.ejs
│ │ │ │ ├── highlight.ejs
│ │ │ │ ├── math.ejs
│ │ │ │ ├── mermaid.ejs
│ │ │ │ ├── nprogress.ejs
│ │ │ │ └── typed.ejs
│ │ │ ├── post
│ │ │ │ ├── category-bar.ejs
│ │ │ │ ├── copyright.ejs
│ │ │ │ ├── meta-bottom.ejs
│ │ │ │ ├── meta-top.ejs
│ │ │ │ ├── sidebar-left.ejs
│ │ │ │ ├── sidebar-right.ejs
│ │ │ │ └── toc.ejs
│ │ │ ├── scripts.ejs
│ │ │ └── search.ejs
│ │ ├── about.ejs
│ │ ├── archive.ejs
│ │ ├── categories.ejs
│ │ ├── category.ejs
│ │ ├── index.ejs
│ │ ├── layout.ejs
│ │ ├── links.ejs
│ │ ├── page.ejs
│ │ ├── post.ejs
│ │ ├── tag.ejs
│ │ └── tags.ejs
│ ├── package.json
│ ├── scripts
│ │ ├── events
│ │ │ ├── index.js
│ │ │ └── lib
│ │ │ ├── compatible-configs.js
│ │ │ ├── footnote.js
│ │ │ ├── hello.js
│ │ │ ├── highlight.js
│ │ │ ├── injects.js
│ │ │ ├── lazyload.js
│ │ │ └── merge-configs.js
│ │ ├── filters
│ │ │ ├── default-injects.js
│ │ │ ├── locals.js
│ │ │ └── post-filter.js
│ │ ├── generators
│ │ │ ├── local-search.js
│ │ │ └── pages.js
│ │ ├── helpers
│ │ │ ├── date.js
│ │ │ ├── engine.js
│ │ │ ├── export-config.js
│ │ │ ├── import.js
│ │ │ ├── injects.js
│ │ │ ├── page.js
│ │ │ ├── scope.js
│ │ │ ├── url.js
│ │ │ ├── utils.js
│ │ │ └── wordcount.js
│ │ ├── tags
│ │ │ ├── button.js
│ │ │ ├── checkbox.js
│ │ │ ├── group-image.js
│ │ │ ├── label.js
│ │ │ ├── mermaid.js
│ │ │ └── note.js
│ │ └── utils
│ │ ├── compare-versions.js
│ │ ├── object.js
│ │ ├── resolve.js
│ │ └── url-join.js
│ └── source
│ ├── css
│ │ ├── _functions
│ │ │ └── base.styl
│ │ ├── _mixins
│ │ │ └── base.styl
│ │ ├── _pages
│ │ │ ├── _about
│ │ │ │ └── about.styl
│ │ │ ├── _archive
│ │ │ │ └── archive.styl
│ │ │ ├── _base
│ │ │ │ ├── _widget
│ │ │ │ │ ├── anchorjs.styl
│ │ │ │ │ ├── banner.styl
│ │ │ │ │ ├── board.styl
│ │ │ │ │ ├── code-widget.styl
│ │ │ │ │ ├── copyright.styl
│ │ │ │ │ ├── footer.styl
│ │ │ │ │ ├── footnote.styl
│ │ │ │ │ ├── header.styl
│ │ │ │ │ ├── modal.styl
│ │ │ │ │ ├── ngrogress.styl
│ │ │ │ │ ├── noscript.styl
│ │ │ │ │ ├── pagination.styl
│ │ │ │ │ ├── qrcode.styl
│ │ │ │ │ ├── scroll-btn.styl
│ │ │ │ │ ├── search.styl
│ │ │ │ │ └── toc.styl
│ │ │ │ ├── base.styl
│ │ │ │ ├── color-schema.styl
│ │ │ │ ├── inline.styl
│ │ │ │ └── keyframes.styl
│ │ │ ├── _category
│ │ │ │ ├── category-bar.styl
│ │ │ │ ├── category-chain.styl
│ │ │ │ └── category-list.styl
│ │ │ ├── _index
│ │ │ │ └── index.styl
│ │ │ ├── _links
│ │ │ │ └── links.styl
│ │ │ ├── _post
│ │ │ │ ├── comment.styl
│ │ │ │ ├── highlight.styl
│ │ │ │ ├── markdown.styl
│ │ │ │ ├── post-page.styl
│ │ │ │ └── post-tag.styl
│ │ │ ├── _tag
│ │ │ │ ├── tag.styl
│ │ │ │ └── tags.styl
│ │ │ └── pages.styl
│ │ ├── _variables
│ │ │ └── base.styl
│ │ ├── gitalk.css
│ │ ├── highlight-dark.styl
│ │ ├── highlight.styl
│ │ └── main.styl
│ ├── img
│ │ ├── avatar.png
│ │ ├── default.png
│ │ ├── fluid.png
│ │ ├── loading.gif
│ │ └── police_beian.png
│ ├── js
│ │ ├── boot.js
│ │ ├── color-schema.js
│ │ ├── events.js
│ │ ├── img-lazyload.js
│ │ ├── leancloud.js
│ │ ├── local-search.js
│ │ ├── plugins.js
│ │ └── utils.js
│ └── xml
│ └── local-search.xml
├── 说明.htm
└── 5t6t网_Hexo-Fluid-v1.9.4.zip
35 directories, 161 files
评论