feat: Add custom instance names (#399)

* Add custom name variable

* Add custom name variable usage to docs

* Remove leftover testing config options (oops)
This commit is contained in:
Sangelo
2024-12-15 17:39:51 +01:00
committed by GitHub
parent 00951bf63b
commit 20aef5e694
6 changed files with 1401 additions and 1387 deletions

View File

@ -46,9 +46,9 @@
{{ end }}
{{ if .htmlTitle }}
<title>{{ .htmlTitle }} - Opengist</title>
<title>{{ .htmlTitle }} - {{ if $.c.CustomName }}{{ $.c.CustomName }}{{ else }}Opengist{{ end }}</title>
{{ else }}
<title>Opengist</title>
<title>{{ if $.c.CustomName }}{{ $.c.CustomName }}{{ else }}Opengist{{ end }}</title>
{{ end }}
</head>
<body class="h-full">