init
This commit is contained in:
commit
47fce2af8d
10 changed files with 70 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
public/
|
||||
.hugo_build.lock
|
||||
resources/_gen
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
1
content/_index.md
Normal file
1
content/_index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# compose.libre.sh
|
10
content/docs/applications.md
Normal file
10
content/docs/applications.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "Applications"
|
||||
weight: 1
|
||||
# bookFlatSection: false
|
||||
# bookToc: true
|
||||
# bookHidden: false
|
||||
# bookCollapseSection: false
|
||||
# bookComments: false
|
||||
# bookSearchExclude: false
|
||||
---
|
10
content/docs/installation.md
Normal file
10
content/docs/installation.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "Installation"
|
||||
weight: 1
|
||||
# bookFlatSection: false
|
||||
# bookToc: true
|
||||
# bookHidden: false
|
||||
# bookCollapseSection: false
|
||||
# bookComments: false
|
||||
# bookSearchExclude: false
|
||||
---
|
10
content/docs/system-modules.md
Normal file
10
content/docs/system-modules.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "System Modules"
|
||||
weight: 1
|
||||
# bookFlatSection: false
|
||||
# bookToc: true
|
||||
# bookHidden: false
|
||||
# bookCollapseSection: false
|
||||
# bookComments: false
|
||||
# bookSearchExclude: false
|
||||
---
|
14
content/posts/10th-anniversary.md
Normal file
14
content/posts/10th-anniversary.md
Normal 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
5
go.mod
Normal 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
2
go.sum
Normal 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
10
hugo.toml
Normal 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
|
Loading…
Reference in a new issue