全局配置
可以在 _config.yml 中修改:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| # Hexo Configuration ## Docs: http://hexo.io/docs/configuration.html ## Source: https://github.com/hexojs/hexo/ # Site 站点配置 title: Hexo-demo #网站标题 subtitle: hexo is simple and easy to study #网站副标题 description: this is hexo-demo #网栈描述 author: pomy #你的名字 language: zh-CN #网站使用的语言 timezone: Asia/Shanghai #网站时区 # URL #可以不用配置 ## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/' url: http://yoursite.com #网址,搜索时会在搜索引擎中显示 root: / #网站根目录 permalink: :year/:month/:day/:title/ #永久链接格式 permalink_defaults: #永久链接中各部分的默认值 # Directory 目录配置 source_dir: source #资源文件夹,这个文件夹用来存放内容 public_dir: public #公共文件夹,这个文件夹用于存放生成的站点文件 tag_dir: tags #标签文件夹 archive_dir: archives #归档文件夹 categories_dir: categories #分类文件夹 code_dir: downloads/code #Include code 文件夹 i18n_dir: :lang #国际化文件夹 skip_render: #跳过指定文件的渲染,您可使用 glob 来配置路径 # Writing 写作配置 new_post_name: :title.md # 新文章的文件名称 default_layout: post #默认布局 titlecase: false # Transform title into titlecase external_link: true # Open external links in new tab filename_case: 0 #把文件名称转换为 (1) 小写或 (2) 大写 render_drafts: false #显示草稿 post_asset_folder: false #是否启动资源文件夹 relative_link: false #把链接改为与根目录的相对位址 future: true highlight: #代码块的设置 enable: true line_number: true auto_detect: true tab_replace: # Category & Tag 分类 & 标签 default_categories: uncategorized #默认分类 categories_map: #分类别名 tag_map: #标签别名 # Date / Time format 时间和日期 ## Hexo uses Moment.js to parse and display date ## You can customize the date format as defined in ## http://momentjs.com/docs/#/displaying/format/ date_format: YYYY-MM-DD time_format: HH:mm:ss # Pagination 分页 ## Set per_page to 0 to disable pagination per_page: 10 #每页显示的文章量 (0 = 关闭分页功能) pagination_dir: page #分页目录 # Extensions 扩展 ## Plugins: http://hexo.io/plugins/ 插件 ## Themes: http://hexo.io/themes/ 主题 theme: landscape #当前主题名称 # Deployment #部署到github ## Docs: http://hexo.io/docs/deployment.html deploy: type:
|
一般主题下有一个 languages 文件夹,用于对应 language 配置项。比如在 ejs 中有:
<%= __(‘tags’) %>
language 的配置项是 zh-CN ,则会在 languages 文件夹下找到 zh-CN.yml 文件中对应的项来解释。
修改全局配置时,注意缩进,同时注意冒号后面要有一个空格。
主题配置
主题的配置文件在 /themes/主题文件夹/_config.yml ,一般包括导航配置(menu),内容配置(content),评论插件,图片效果(fancybox)和边栏(sidebar)。
Hexo提高了大量的主题,可以在全局配置文件中更改主题:
# Extensions 扩展
## Plugins: http://hexo.io/plugins/ 插件
## Themes: http://hexo.io/themes/ 主题
theme: 你的主题名称
主题的文件目录必须在 themes 目录下。 Hexo主题更换教程(https://github.com/dwqs/nx)
更多Hexo主题戳此: Hexo Themes(https://github.com/hexojs/hexo/wiki/Themes) 。