雜亂大全22-安裝Hexo當作GitHub上的blog(上)

  • 前言:本次為安裝Hexo練習
tags: 六角學院

主題:雜亂大全22-安裝Hexo當作GitHub上的blog(上)

本篇重點:

  • 練習使用Hexo當作Blog
  • 提醒:”$”表示CMD指令

安裝步驟

部屬到Github

  • 在GitHub新增一個倉庫(Repositories)

  • 倉庫名稱改為 自己的ID.github.io

  • 再到 blog 下找 _config.yml 的檔案

  • 開啟之後,拉到檔案最底部
    新增

    1
    2
    3
    4
    deploy:
    type: git
    repository: http://github.com/yourname/yourname.github.io.git
    branch: master
  • 提醒:設定中的 “:” 後一定要有一個空格

補充:

  • Hexo 配置檔介紹
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    # Site
    title: /標題(會顯示在網頁標題與頁首)/
    subtitle: /子標題(顯示在頁首)/
    description: /內容描述(給搜尋引擎看的)/
    author: /作者(顯示在頁尾)/
    language: /網站預設語言(台灣:zh-tw)/
    timezone: /時區(預設使用你電腦的時區)/

    # URL
    url: /網站的網域位址/
    root: /網站根目錄/
    permalink: /文章目錄(預設使用 YYYY\MM\DD\文章名稱)/

    # Extensions
    theme: /網站的佈景主題/
    (可以到"https://hexo.io/themes/"下載喜歡的佈景放置到 theme 目錄裡)

    # Deployment
    deploy:
    type: /發佈型態/ 例如(git、heroku、rsync、openshift、ftpsync)
    repository: /部署位置/ 例如(git@github.com:帳號/REPO名.git)
    branch: /分支/ 例如(master、gh-pages)
    message: /部署訊息/

我自己使用的第三方NexT 主題


參考資料

[1]Hexo+GitHub,新手也可以快速建立部落格
https://blackmaple.me/hexo-tutorial/