Hexo部落格主題應用
阿新 • • 發佈:2019-01-30
關於如何搭建Github Pages部落格我已經介紹了。
我這裡以yilia為例為大家介紹主題的應用。
然後在網上找到自己喜歡的主題。我這裡給大家推薦這個還是很不錯的哦。
yilia預覽:yilia
yilia程式碼庫:yilia
Hexo官網的其他主題:Hexo
1.首先我們找到自己本地的Hexo資料夾下。
然後右鍵Git Bash Here
$ git clone https://github.com/litten/hexo-theme-yilia themes/yilia
通過以上命令我們把相應的主題下載到自己的hexo主題裡邊來。
2.修改配置檔案
修改部落格目錄E:\hexo\_config.yml
中的theme屬性,將其設定為yilia。
3.找到主題對應下邊的配置檔案,然後修改相應資訊。
4.生成目錄,在E:\hexo目錄下執行
npm i hexo-generator-json-content --save
然後在主題下邊的配置檔案加入以下程式碼
jsonContent: meta: false pages: false posts: title: true date: true path: true text: true raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true
就可以正常的顯示目錄了。