虽然hexo已经自带了常用的导航菜单,当我们觉得不够用得时候就只能自己进行扩展。
扩展命令如下
hexo new categories menuName
扩展完成后需要在主题中得配置文件_config.yml中找到menu对其进行配置,配置得主要目的是点击得时候url能映射。
1 2 3 4 5 6 7 8 9
| menu: home: / || home tags: /tags/ || tags categories: /categories/ || th archives: /archives/ || archive about: /about/ || user reading: /Reading || book album: /album || heart-o bookmarks: /BookMarks || bookmark-o
|
如上所示,对应得如下:显示名称: /对应的文件夹||图标样式
图标可以根据自己用的主题进行选择,Next主题用的图标是(http://fontawesome.dashgame.com/)
完成上述操作后。需要在主题得languas目录下,找到自己所用语言,进行配置。
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| title: archive: 归档 category: 分类 tag: 标签 schedule: 日程表
author: 博主
menu: home: 首页 archives: 归档 categories: 分类 tags: 标签 about: 关于 search: 搜索 schedule: 日程表 sitemap: 站点地图 commonweal: 公益404 album: 相册 bookmarksbookmarks: 书签 reading: 书单 sidebar: overview: 站点概览 toc: 文章目录
post: created: 创建于 modified: 更新于 sticky: 置顶 posted: 发表于 in: 分类于 read_more: 阅读全文 untitled: 未命名 toc_empty: 此文章未包含目录 visitors: 阅读次数 wordcount: 字数统计 min2read: 阅读时长 totalcount: Site words total count copyright: author: 本文作者 link: 本文链接 license_title: 版权声明 license_content: '本博客所有文章除特别声明外,均采用 <a href="%s" rel="external nofollow" target="_blank">%s</a> 许可协议。转载请注明出处!'
page: totally: 共有 tags: 标签
footer: powered: "由 %s 强力驱动" theme: 主题
counter: tag_cloud: zero: 暂无标签 one: 目前共计 1 个标签 other: "目前共计 %d 个标签"
categories: zero: 暂无分类 one: 目前共计 1 个分类 other: "目前共计 %d 个分类"
archive_posts: zero: 暂无日志。 one: 目前共计 1 篇日志。 other: "目前共计 %d 篇日志。"
state: posts: 日志 pages: 页面 tags: 标签 categories: 分类
search: placeholder: 搜索...
cheers: um: 嗯.. ok: OK nice: 好 good: 很好 great: 非常好 excellent: 太棒了
keep_on: 继续努力。
symbol: comma: ', ' period: '。 ' colon: ':'
reward: donate: 打赏 wechatpay: 微信支付 alipay: 支付宝 bitcoin: 比特币
gitmentbutton: 显示 Gitment 评论
|
大功告成!!!