fix: page names
This commit is contained in:
parent
de8a661952
commit
e0bd77fe3b
|
@ -53,7 +53,7 @@ func indexPageRoute(
|
|||
|
||||
data := pageData{
|
||||
Base: baseData{
|
||||
Title: "hello base template title",
|
||||
Title: "Some Automoderation: simple automation",
|
||||
},
|
||||
Header: headerData{
|
||||
Title: session.RoomId,
|
||||
|
|
|
@ -115,7 +115,7 @@ func renderLoginPage(w http.ResponseWriter, roomName string, isRoomExisting bool
|
|||
|
||||
title := "Some Automoderation: Join room or create one"
|
||||
if roomName != "" {
|
||||
title = fmt.Sprintf("Some Automoderation: create or join '%s' room", roomName)
|
||||
title = fmt.Sprintf("Some Automoderation: join room '%s'", roomName)
|
||||
}
|
||||
data := pageData{
|
||||
Base: baseData{
|
||||
|
|
|
@ -268,7 +268,7 @@ func roomPageRoute(
|
|||
}
|
||||
data := pageData{
|
||||
Base: baseData{
|
||||
Title: "room-lala-from-base",
|
||||
Title: fmt.Sprintf("Some Automoderation: discussion in '%s'", room.Name),
|
||||
LoggedIn: true,
|
||||
},
|
||||
Content: contentData,
|
||||
|
|
Loading…
Reference in New Issue