aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknotteye <knotteye@airmail.cc>2021-07-01 14:39:44 -0500
committerknotteye <knotteye@airmail.cc>2021-07-01 14:39:44 -0500
commit638a03b458b71564b1db439e6386d7dbf2a5181c (patch)
tree59e5a8548fd0623c379516a47b26b0f074b4a32e
parentdbe79ecbb5bb0645093780380cc241f6cd8d1a20 (diff)
linkify text and use imageboard name to identify it
-rw-r--r--client.go5
-rw-r--r--static/index.html10
2 files changed, 7 insertions, 8 deletions
diff --git a/client.go b/client.go
index 49c7d0c..dd40f3d 100644
--- a/client.go
+++ b/client.go
@@ -1,6 +1,5 @@
package main
-import "fmt"
import "net/http"
import "html/template"
import "database/sql"
@@ -36,7 +35,7 @@ type Board struct{
type PageData struct {
Title string
- Message string
+ PreferredUsername string
Board Board
Pages []int
CurrentPage int
@@ -81,7 +80,7 @@ func IndexGet(w http.ResponseWriter, r *http.Request, db *sql.DB) {
var data PageData
data.Title = "Welcome to " + actor.PreferredUsername
- data.Message = fmt.Sprintf("%s 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", Domain)
+ data.PreferredUsername = actor.PreferredUsername
data.Boards = Boards
data.Board.Name = ""
data.Key = *Key
diff --git a/static/index.html b/static/index.html
index 502e527..19c5da2 100644
--- a/static/index.html
+++ b/static/index.html
@@ -1,6 +1,6 @@
{{ define "header" }}
<title>{{ .Title }}</title>
-<meta name="description" content="{{ .Message }}">
+<meta name="description" content="{{ .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.">
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
@@ -8,10 +8,10 @@
<meta property="og:site_name" content="{{ .Board.Actor.PreferredUsername }}" />
<meta property="og:title" content="{{ .Title }}">
-<meta property="og:description" content="{{ .Message }}">
+<meta property="og:description" content="{{ .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.">
<meta name="twitter:title" content="{{ .Title }}">
-<meta name="twitter:description" content="{{ .Message }}">
+<meta name="twitter:description" content="{{ .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.">
<meta name="twitter:card" content="summary_large_image">
{{ end }}
@@ -20,7 +20,7 @@
{{ define "content" }}
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
<h1>{{ .Title }}</h1>
- <p style="text-align: justify">{{.Message}}</p>
+ <p style="text-align: justify">{{ .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 <a href="https://github.com/FChannel0">here</a>.</p>
<div style="margin-top:50px;">
<table align="center" style="text-align: left;">
@@ -30,7 +30,7 @@
{{ range .InstanceIndex }}
<tr>
- <td>{{ .Id }}</td>
+ <td><a href="{{ .Id }}">{{ .Id }}</a></td>
</tr>
{{ end }}
</table>