欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

Hexo-theme-Fluid博客主题

介绍 评论 失效链接反馈

【例子介绍】Hexo-theme-Fluid博客主题

Fluid是基于Hexo框架开发的一款Material Design风格的主题。该主题相较于其他主题的优势:1、优雅的颜值,使用Material Design风格突出层次感,但又不失简约,让用户能专注于写作;2、提供大量定制化配置项,使每个用户使用该主题都能具有独特的样式;3、响应式页面,适配手机、平板等设备,包括极端的分辨率都能轻松应对;4、主题中少有的整合了LaTeX和mermaid的支持。

【相关图片】

from clipboard

【源码结构】
.
├── 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

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复