initial commit

This commit is contained in:
Matthieu Bessat 2022-12-10 11:37:36 +01:00
commit b55f54eb6d
68 changed files with 1761 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<!-- Use site subtitle by default -->
{{ $description := .Site.Params.sidebar.subtitle }}
{{ if .Description }}
<!-- Page description exists -->
{{ $description = .Description }}
{{ else if .IsPage }}
<!-- Use page summary -->
{{ $description = .Summary }}
{{ end }}
{{ return ($description | plainify)}}