create blog folder

This commit is contained in:
2026-07-15 10:55:12 +08:00
commit 4d470495fa
4 changed files with 31 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
hugo.exe
+22
View File
@@ -0,0 +1,22 @@
# hugo博客-日常篇
kushidou的博客,记录日常和游记
基于hugo的静态博客。
主题:[CaiJimmy / hugo-theme-stack](https://github.com/CaiJimmy/hugo-theme-stack)
常用命令行:
```bash
# 创建文章
hugo new xxx/xxx.md
# 调试
hugo server
# 编译
hugo
```
文档通过思源笔记编写-导出hugo。
+5
View File
@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++
+3
View File
@@ -0,0 +1,3 @@
baseURL = 'https://example.org/'
locale = 'en-us'
title = 'My New Hugo Project'