diff options
author | sageman_ <sageman@anomine.net> | 2021-07-04 14:34:37 +0200 |
---|---|---|
committer | sageman_ <sageman@anomine.net> | 2021-07-04 14:34:37 +0200 |
commit | 68ad1d59f7fdf1a572da45060a9480079241031d (patch) | |
tree | 4b54287214e666fb53c3d3fd650cc1b6fda0d455 /client.go | |
parent | bc868ba51864f2f1569f942cc44b01d631d0d337 (diff) |
Oops, forgot that the description was relocated
On another note, it would be nice if the description was in one place
Diffstat (limited to 'client.go')
-rw-r--r-- | client.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -94,8 +94,7 @@ 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 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.PreferredUsername = actor.PreferredUsername data.Boards = Boards data.Board.Name = "" data.Key = *Key |