This commit is contained in:
jon r 2024-09-24 19:03:40 +02:00
commit 47fce2af8d
10 changed files with 70 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
public/
.hugo_build.lock
resources/_gen

5
archetypes/default.md Normal file
View file

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

1
content/_index.md Normal file
View file

@ -0,0 +1 @@
# compose.libre.sh

View file

@ -0,0 +1,10 @@
---
title: "Applications"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---

View file

@ -0,0 +1,10 @@
---
title: "Installation"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---

View file

@ -0,0 +1,10 @@
---
title: "System Modules"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---

View file

@ -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!
# 🎉

5
go.mod Normal file
View file

@ -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

2
go.sum Normal file
View file

@ -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=

10
hugo.toml Normal file
View file

@ -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