This commit is contained in:
sunbeam 2025-06-06 16:39:32 +08:00
commit 614a09bac4
6 changed files with 41 additions and 0 deletions

28
.gitignore vendored Normal file
View File

@ -0,0 +1,28 @@
# Hugo 生成的静态站点目录
/public/
# Hugo 生成的缓存
/resources/_gen/
/hugo_stats.json
# 用于 Netlify / Vercel / Firebase 之类服务的配置(可根据需要调整)
# 例如,以下可选:
# netlify.toml
# vercel.json
# macOS 垃圾文件
.DS_Store
# Node.js 相关(如果有用到)
node_modules/
npm-debug.log
yarn-error.log
# IDE 编辑器的缓存文件
.idea/
.vscode/
# 其他临时文件
*.log
*.bak
*.swp

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/ananke"]
path = themes/ananke
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git

0
.hugo_build.lock Normal file
View File

5
archetypes/default.md Normal file
View File

@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

4
hugo.toml Normal file
View File

@ -0,0 +1,4 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = 'ananke'

1
themes/ananke Submodule

@ -0,0 +1 @@
Subproject commit b6fae8a40311ee22d23f1eed8fe5b12f1c93185f