Skip to content

Sunnie-Y/hexo-theme-aomori

 
 

Repository files navigation

Action Release license

image

Aomori

一款外表简约但内心华丽的 Hexo 主题。

(想到什么功能就做什么,更新完全看心情。欢迎 PR

Demo

https://linhong.me

安装主题

下载 的 ZIP 包解压放置到 Hexo 主题目录下即可

开始使用

基本使用配置,需要在全局 _config.yml 进行以下设置

  1. 启用主题
theme: hexo-theme-aomori
  1. 关闭 Hexo 默认 Highlight 代码高亮
highlight:
  enable: false

主题可选功能

主题可选配置,需要在全局 _config.yml 进行以下设置

头像

aomori_logo: /images/avatar.jpg

头部菜单

aomori_menu:
  Home: /
  Archives: /archives

侧边栏菜单

aomori_widgets:
  - toc # 文章导航
  - category  #文章分类
  - tag # 文章标签
  - recent_posts  # 最新文章
  - archive #文章归档

知识共享使用许可

aomori_copyright: true # or false

社交媒体

icon 填入 Boxicons Icon Name

url 链接地址

aomori_social:
  -
    icon:
    url:
  -
    icon:
    url:

百度链接提交

aomori_baidu_sitepush: true  # or false

百度统计

aomori_baidu_analytics: ''

Google 统计

aomori_google_analytics: 'UA-XXXXX-X'

不蒜子 统计

不蒜子 提供的计数服务

aomori_busuanzi: true

文章可选功能

配置文件:文章 Front-matter

封面图片

使用 相对路径,参照 资源文件夹

cover: xxx.jpg

文字头部图片

可配多张,使用 相对路径 ,参照 资源文件夹

photos:
- xxx.jpg
- xxx.jpg

转载链接

可配多条

url 跳转链接 / title 显示标题

link_reprint:
  -
    url: url
    title: title
  -
    url: url
    title: title

参考链接

可配多条

url 跳转链接 / title 显示标题

link_refer:
  -
    url: url
    title: title
  -
    url: url
    title: title

文章可选风格

配置文件:文章头部

Tweet

layout: tweet

文章评论

配置文件:全站 _config.yml

Disqus

填入 Disqus ID

aomori_disqus_shortname: ''

Gitalk

aomori_gitalk:
  enable: true
  clientID: GitHub Application Client ID
  clientSecret: GitHub Application Client Secret
  repo: GitHub repo
  owner: GitHub repo owner
  admin: 
    - GitHub repo owner and collaborators
    - GitHub repo owner and collaborators
  distractionFreeMode: true // Facebook-like distraction free mode

页面

友情链接

首先创建页面

hexo new page friends

前往 source/friends/index.md 文件,设置 Front-matter

title: 友情链接 # 文章标题
layout: friends
comment: true # 是否需要评论 true: 是 false: 否

创建数据,参照 数据文件夹

创建 source/_data/friends.json,格式如下

[
  {
    "name": "test1",
    "url": "https://linhong.me"
  },
  {
    "name": "test2",
    "url": "https://linhong.me"
  }
  ...
]

TODO

  • 侧边栏滚动条
  • 英文文档

主题仍在更新维护,欢迎 PR。

Copyright & License

Copyright (c) 2020 LIN HONG - Released under the MIT license.

About

A Hexo Theme. Hexo 博客主题

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 43.0%
  • JavaScript 30.2%
  • HTML 26.8%