[Hugo] 如何使用hugo建立自己的github Page -part 1

  1. 安裝Hugo Referrence

    brew install hugo

  2. 選一個自己喜歡的themes 拷貝下載連結

  3. 先建立themes的資料夾然後git clone

    mkdir themes && cd themes

    git clone https://github.com/halogenica/beautifulhugo.git

  4. 將theme內的exampleSite拷貝到主要資料夾(注意不是全部theme都含exampleSite,請仔細閱讀文件)

    cp -R beautifulhugo/exampleSite/* ..

  5. 回到主資料夾然後執行hugo

    cd .. && hugo server -t YourThemeName

    59%20AM

  6. 請連上 http://localhost:1313/ 預覽你的網站

  7. Hugo 結構介紹 : config.toml , 這個檔安都是存放全站共用的參數,如facebook, Google Analytics, email 等等

  8. content/post 新增文章,content/page 新增頁面 都是以markdown編輯

  9. 圖檔位置 themes/YourThemeName/static/img
    CSS位置 themes/YourThemeName/static/css
    JS位置 themes/YourThemeName/static/js