commit 47fce2af8d7ea7ffd0d451f51c819b783970e40c Author: jon r Date: Tue Sep 24 19:03:40 2024 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6485f7e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +public/ +.hugo_build.lock +resources/_gen diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..b373b01 --- /dev/null +++ b/content/_index.md @@ -0,0 +1 @@ +# compose.libre.sh diff --git a/content/docs/applications.md b/content/docs/applications.md new file mode 100644 index 0000000..e793d25 --- /dev/null +++ b/content/docs/applications.md @@ -0,0 +1,10 @@ +--- +title: "Applications" +weight: 1 +# bookFlatSection: false +# bookToc: true +# bookHidden: false +# bookCollapseSection: false +# bookComments: false +# bookSearchExclude: false +--- diff --git a/content/docs/installation.md b/content/docs/installation.md new file mode 100644 index 0000000..0a1e491 --- /dev/null +++ b/content/docs/installation.md @@ -0,0 +1,10 @@ +--- +title: "Installation" +weight: 1 +# bookFlatSection: false +# bookToc: true +# bookHidden: false +# bookCollapseSection: false +# bookComments: false +# bookSearchExclude: false +--- diff --git a/content/docs/system-modules.md b/content/docs/system-modules.md new file mode 100644 index 0000000..c1e18ef --- /dev/null +++ b/content/docs/system-modules.md @@ -0,0 +1,10 @@ +--- +title: "System Modules" +weight: 1 +# bookFlatSection: false +# bookToc: true +# bookHidden: false +# bookCollapseSection: false +# bookComments: false +# bookSearchExclude: false +--- diff --git a/content/posts/10th-anniversary.md b/content/posts/10th-anniversary.md new file mode 100644 index 0000000..f664c67 --- /dev/null +++ b/content/posts/10th-anniversary.md @@ -0,0 +1,14 @@ +--- +title: "10th anniversary" +date: 2024-09-24T18:48:31+02:00 +# bookComments: false +# bookSearchExclude: false +tags: anniversary +categories: announcements +--- + +Today marks the tenth anniversary of the original `libre.sh`. + +Congratulations to all contributors and maintainers! + +# 🎉 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e6d01df --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module compose.libre.sh + +go 1.22.2 + +require github.com/alex-shpak/hugo-book v0.0.0-20240902130312-c19a0a60ffca // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..a0e8e92 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/alex-shpak/hugo-book v0.0.0-20240902130312-c19a0a60ffca h1:9h3q38x9yBIfwpB8RDNciB3v4uiTCSmUliU5r06HHYs= +github.com/alex-shpak/hugo-book v0.0.0-20240902130312-c19a0a60ffca/go.mod h1:L4NMyzbn15fpLIpmmtDg9ZFFyTZzw87/lk7M2bMQ7ds= diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..b493e0e --- /dev/null +++ b/hugo.toml @@ -0,0 +1,10 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'compose.libre.sh' + +enableGitInfo = true + +[module] +[[module.imports]] +path = 'github.com/alex-shpak/hugo-book' +disable = false