Clean up default values for page content

This commit is contained in:
Gabe Kangas
2022-11-22 12:35:44 -08:00
parent e86b67cf08
commit efa24df299
2 changed files with 20 additions and 17 deletions

View File

@@ -38,9 +38,8 @@ type Defaults struct {
// GetDefaults will return default configuration values.
func GetDefaults() Defaults {
return Defaults{
Name: "Owncast",
Title: "My Owncast Server",
Summary: "This is brief summary of whom you are or what your stream is. You can edit this description in the admin.",
Name: "New Owncast Server",
Summary: "This is a new live video streaming server powered by Owncast.",
ServerWelcomeMessage: "",
Logo: "logo.svg",
Tags: []string{
@@ -48,7 +47,21 @@ func GetDefaults() Defaults {
"streaming",
},
PageBodyContent: "# This is your page content that can be edited from the admin.",
PageBodyContent: `
# Welcome to Owncast!
- This is a live stream powered by [Owncast](https://owncast.online), a free and open source live streaming server.
- To discover more examples of streams, visit [Owncast's directory](https://directory.owncast.online).
- If you're the owner of this server you should visit the admin and customize the content on this page.
<hr/>
<video id="video" controls preload="metadata" width="40%" poster="https://videos.owncast.online/t/xaJ3xNn9Y6pWTdB25m9ai3">
<source src="https://videos.owncast.online/v/xaJ3xNn9Y6pWTdB25m9ai3.mp4?quality=" type="video/mp4" />
</video>
`,
DatabaseFilePath: "data/owncast.db",