Hexo 基本設定
Hexo網站基本設定介紹
用 hexo 架設網站非常的方便,hexo 把所有網站的基本設定參數都放在 _config.yml
裡面,我們可以根據自己對網站的需求調整這些晚站配置參數。配置參數很多這裡就不一一列舉,只記錄一些重要需要更改的參數。詳細也可以參考官方配置文件
任何有關設定檔案的設定值,一定要在冒號後加上一個空格再接設定值
網站基本資訊
# Site
title: Hexo # 部落格標題
subtitle: '' # 部落格副標題
description: '' # 部落格簡介
keywords: '關鍵字1', '關鍵字2' # 網站關鍵字,多個關鍵字用逗號隔開
author: John Doe # 作者名字
language: en # 語言,繁體中文設定 zh-TW
timezone: '' # 使用系統時間即可
URL設定
# URL
## If your site is put in a subdirectory, set url as 'http://example.com/child' and root as '/child/'
url: http://example.com # 正式部落格網址
# permalink: :year/:month/:day/:title/ # 文章路徑
permalink: :title/ # 可以設定網址後直接接文章名稱,網址整體才比較短
permalink_defaults:
pretty_urls:
trailing_index: false # 設置 false 會移除網址 中的 index.html
trailing_html: false # 設置 false 會移除網址中的 html
載入文章
# Writing
# new_post_name: :title.md 設定對應的文章原始編輯檔
new_post_name: :year-:month-:day-:title.md # 這樣設定會在生成新文章.md檔時將文章生成日輸入進檔名,方便日後管理