使用 Zola 架設部落格

2023-09-10Updated: 2024-10-26

前言#

如何使用 Zola 建構網頁#

流程分為三個步驟:建置專案、套用主題、佈署網頁 (參考自 [Zola] 開始架自己的部落格-使用 Zola 建置專案)

建置 Zola 專案#

refer to getting-started

  1. $ scoop install zola
  2. $ zola init myblog (將專案放置指定資料夾 myblog)

初始化完會有以下資料夾結構

├── config.toml
├── content
├── sass
├── static
├── templates
└── themes
  • config.toml: 專案屬性的設定檔
  • content: 網站的實際內容都會存成 .md 檔放在這邊
  • sass: 專案的 SASS 樣式檔
  • static: 靜態資源,e.g., 圖檔
  • templates: 設定網站模板
  • themes: 網站主題

實際使用結果

├── config.toml
├── content/
│   └── blog/
│       ├── _index.md
│       ├── first.md
│       └── second.md
├── sass/
├── static/
├── templates/
│   ├── base.html
│   ├── blog-page.html
│   ├── blog.html
│   └── index.html
└── themes/

Theme: 套用主題#

主題採用 serene 並複製 The Data Quarry 的設定。

  • 將主題的相關檔案放到本地端並根據自己的需求修改
  • 或是使用 git submodule 套用主題,好處是主題有更新會自動套用

git submodule 的使用方式如下:

  1. 使用 git submodule 套用主題,後續主題有更新可直接使用

    # git submodule add [url] themes/tale-zola
    # [url] 是該主題的 Repository 來源
    $ git submodule add [email protected]:aaranxu/tale-zola.git themes/tale-zola
    
  2. 設定 config.toml

    // The URL the site will be built for
    base_url = "https://example.com"
    
    //指定主題的名稱
    theme="tale-zola"
    

Reference:

  1. https://serene-demo.pages.dev/
  2. https://getzola.github.io/even/
  3. https://tale-zola.netlify.app/
  4. https://schoenenberg.github.io/zola-paper/
  5. https://cydave.github.io/zola-theme-papermod/
  6. https://deepthought-theme.netlify.app/

Deployment: 佈署網頁#

我將網頁佈署在 Cloudflare Pages

Refer to

參考資料#