diff options
author | sageman_ <sageman@anomine.net> | 2021-07-03 17:46:04 +0200 |
---|---|---|
committer | sageman_ <sageman@anomine.net> | 2021-07-03 21:30:39 +0200 |
commit | d287a2d0bb19f6a7eef682cd411e0e7cc31c1e3d (patch) | |
tree | 0cae37d904a91d0b1749ab2af865dd0356dbe931 /client.go | |
parent | 97ce6d91545ec10f35d692ccbf60536d83f5debf (diff) |
Improve the static pages a bit
They were *begging* for grammar corrections after all. The FAQ should now be a bit more newbie-friendly now.
Diffstat (limited to 'client.go')
-rw-r--r-- | client.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -81,8 +81,8 @@ func IndexGet(w http.ResponseWriter, r *http.Request, db *sql.DB) { var data PageData data.Title = "Welcome to " + actor.PreferredUsername - data.Message = actor.PreferredUsername + " is a federated image board based on activitypub. The current version of the code running the server is still a work in progress, expect a bumpy ride for the time being. Get the server code here https://github.com/FChannel0" - data.MessageHTML = template.HTML(actor.PreferredUsername + " is a federated image board based on activitypub. The current version of the code running the server is still a work in progress, expect a bumpy ride for the time being. Get the server code here <a href='https://github.com/FChannel0'>https://github.com/FChannel0</a>") + data.Message = actor.PreferredUsername + " is a federated image board based on ActivityPub. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: https://github.com/FChannel0" + data.MessageHTML = template.HTML(actor.PreferredUsername + ` is a federated image board based on <a href="https://activitypub.rocks/">ActivityPub</a>. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: <a href="https://github.com/FChannel0">https://github.com/FChannel0</a>`) data.Boards = Boards data.Board.Name = "" data.Key = *Key |