commit 3d6f390834daa2ee997f8ebbd48a6ec9d5db28fb Author: Babibubebon Date: Sun Sep 4 22:47:10 2022 +0900 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b62a71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..48f7db3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/book"] + path = themes/book + url = git@github.com:alex-shpak/hugo-book.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..a50aaaf --- /dev/null +++ b/config.toml @@ -0,0 +1,10 @@ +baseURL = 'http://example.org/' +languageCode = 'ja-jp' +title = '文化・芸術とLOD ハンズオン' + +theme = 'book' + +enableGitInfo = true + +[params] +BookRepo = 'https://github.com/Babibubebon/lodc2022-culture-art' diff --git a/content/docs/start.md b/content/docs/start.md new file mode 100644 index 0000000..2d80dae --- /dev/null +++ b/content/docs/start.md @@ -0,0 +1,8 @@ +--- +title: "Content Placeholder" +_build: + render: never + list: never + publishResources: false +--- + diff --git a/themes/book b/themes/book new file mode 160000 index 0000000..317ccae --- /dev/null +++ b/themes/book @@ -0,0 +1 @@ +Subproject commit 317ccae23b73f5e49d7341ad57227bd64a89ab38