Clean up default values for page content
This commit is contained in:
@@ -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",
|
||||
|
||||
|
||||
Reference in New Issue
Block a user