1
The Grand Hall
簡介架構
GitHub是一個開放原始碼平台,提供許多服務,其中GitHub Page可以用來免費的呈現自己的網頁
Hugo是一個建造網站的框架,可以免費且快速的建造自己的blog
測試GitHub Page
使用方法就是將index.html放上去,並去設定開啟page就可以
安裝Hugo
Quick Start | Hugo (gohugo.io)
要先安裝Git
再來安裝Hugo,這部分可能會需要進行debug
Installation | Hugo (gohugo.io)
基本操作指令
在要git bash, WSL或者vscode terminal裡面執行指令
hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
echo "theme = 'ananke'" >> config.toml
hugo server
hugo new posts/my-first-post.md
hugo
目錄架構
修改主題、設定檔
Complete List | Hugo Themes (gohugo.io)
-
themes
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
-
config.toml
baseURL = ‘https://YourName.github.io/' languageCode = ‘zn-tw’
title = ‘title’ theme = ""
設定GitHub Page
用法總結&後續應用
Last modified on 2023-03-20