terminal hugo theme
1.1.2
使用 Tailwind CSS 庫和 Mono 字體系列製作的 Hugo 主題
https://nayanseth.com
tailwind.css
檔案將在主題中使用,但如果您想使用 tailwind,請按照下面提到的步驟操作assets/csss/tailwind
目錄中npm run dev
-> 這會從 tailwind 產生所有可能的 CSS 類別。有些可能仍然被排除在外npm run prod
-> 這僅從您在主題中使用的 tailwind 產生 CSS 類hugo new site <SITE_NAME>
cd <SITE_NAME>
git submodule add [email protected]:techbarrack/terminal-hugo-theme.git themes/terminal
<SITE_NAME>/hugo.yaml
的內容替換為<SITE_NAME>/themes/terminal/hugo.yaml
mkdir -p layouts/partials/third_party_js
。此目錄用於儲存任何類型的第三方 javascript,例如 google Analytics、disqus 等hugo server --buildDrafts --disableFastRender --gc --ignoreCache --noHTTPCache --forceSyncStatic --verbose -w
<SITE_NAME>/hugo.yaml
中的ignoreFiles屬性<SITE_NAME>/themes/terminal/content
中的內容開始在<SITE_NAME>/content
中加入文件head.html
中的元內容<SITE_NAME>/layouts/partials/third_party_js/<FILE>.html
中建立部分third_party_js
資料夾中的所有檔案都將包含在</body>
標籤之前{{< svg logo="blah" >}}
-> 使用下列程式碼在 markdown 檔案中加入 svglayouts/content/svg
中新增 svg 作為 .html 文件 {{< rawhtml >}}
<div>This is raw HTML content</div>
{{< /rawhtml >}}
有關如何在 Hugo 中執行操作的其他資訊的一些參考連結: