Change Custom Style
目標
想要在每篇文章顯示最後更新時間,最好能自動吃存檔時間。
過程紀錄
- 閱讀 Learn Theme for Hugo 教學文件的 Style customization 章節,知道了套用主題時,應該在跟 content 同層級的 layouts 放樣板html,如果想要加入自訂 header ,應該在 layouts/partials/ 增加一個名為 custom-header.html 的檔案, Learn Theme 的 header.html 會去吃 custom-header.html 增加到主題的 header 中。
- 閱讀 hugo 官方文件的 front-matte 章節,發現有 last modified 的參數可用
lastmod
。
- 原本不知道如何寫 custom-header ,但是因為 google 搜尋 hogo LastMod 參數時,找到這篇,看起來應該可以直接用,所以把 lastmod 的 html code 丟進去我自己的 custom-header.html 試試,發現在頁首真的有長出最後編輯的資訊,讚啦!目前這樣就滿足了!
參考資料