aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2024-02-12 06:44:32 +0000
committerr <r@freesoftwareextremist.com>2024-02-12 06:44:32 +0000
commit6ddec8db3ee73d3abdc85b6a2101020cf2455bce (patch)
tree3eb09979df47a3dd33b7d2903ed687db7254c2c1 /templates
parent6ad1c5436ae4b623143db9def4b160213456a69e (diff)
downloadbloat-master.tar.gz
bloat-master.zip
Update page titlesHEADmaster
- Use consistent letter casing - Append instance domain to the title
Diffstat (limited to 'templates')
-rw-r--r--templates/about.tmpl2
-rw-r--r--templates/filters.tmpl2
-rw-r--r--templates/list.tmpl2
-rw-r--r--templates/lists.tmpl2
-rw-r--r--templates/root.tmpl2
-rw-r--r--templates/signin.tmpl2
-rw-r--r--templates/user.tmpl4
7 files changed, 8 insertions, 8 deletions
diff --git a/templates/about.tmpl b/templates/about.tmpl
index c6129f9..580c68d 100644
--- a/templates/about.tmpl
+++ b/templates/about.tmpl
@@ -14,7 +14,7 @@
</P>
</div>
-<h1>Keyboard shortcuts</h1>
+<h1>Keyboard Shortcuts</h1>
<div>
<table class="keyboard-shortcuts">
<tr>
diff --git a/templates/filters.tmpl b/templates/filters.tmpl
index 8bdae41..383a0ad 100644
--- a/templates/filters.tmpl
+++ b/templates/filters.tmpl
@@ -21,7 +21,7 @@
<p> No filters added </p>
{{end}}
-<h1>Add filter</h1>
+<h1>Add Filter</h1>
<form action="/filter" method="POST">
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
diff --git a/templates/list.tmpl b/templates/list.tmpl
index ad2e538..6fa2830 100644
--- a/templates/list.tmpl
+++ b/templates/list.tmpl
@@ -31,7 +31,7 @@
<p>No data found</p>
{{end}}
-<h1>Add user</h1>
+<h1>Add User</h1>
<form action="/list/{{.List.ID}}" method="GET">
<div class="form-field">
<label for="query"> Query </label>
diff --git a/templates/lists.tmpl b/templates/lists.tmpl
index 98cdb78..59c53fe 100644
--- a/templates/lists.tmpl
+++ b/templates/lists.tmpl
@@ -26,7 +26,7 @@
<p>No lists added</p>
{{end}}
-<h1>Add list</h1>
+<h1>Add List</h1>
<form action="/list" method="POST">
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
diff --git a/templates/root.tmpl b/templates/root.tmpl
index 0fde835..b04638b 100644
--- a/templates/root.tmpl
+++ b/templates/root.tmpl
@@ -5,7 +5,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="icon" type="image/png" href="/static/favicon.png">
<link rel="stylesheet" href="/static/style.css">
- <title>{{.Title}}</title>
+ <title>{{.CommonData.Title}}</title>
</head>
<frameset cols="424px,*">
<frameset rows="316px,*">
diff --git a/templates/signin.tmpl b/templates/signin.tmpl
index b12e0aa..2c97de2 100644
--- a/templates/signin.tmpl
+++ b/templates/signin.tmpl
@@ -1,7 +1,7 @@
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
-<h1>Bloat</h1>
+<h1>bloat</h1>
<p>A web client for <a href="https://pleroma.social" target="_blank">Mastadon Network</a>.</p>
<form action="/signin" method="post">
<div class="form-field-s">
diff --git a/templates/user.tmpl b/templates/user.tmpl
index 4323b2f..b279e15 100644
--- a/templates/user.tmpl
+++ b/templates/user.tmpl
@@ -149,7 +149,7 @@
{{template "userlistfollow.tmpl" (WithContext .Users $.Ctx)}}
{{else if eq .Type "media"}}
-<h1>Statuses with media</h1>
+<h1>Statuses With Media</h1>
{{range .Statuses}}
{{template "status.tmpl" (WithContext . $.Ctx)}}
{{else}}
@@ -215,7 +215,7 @@
{{end}}
{{else if eq .Type "requests"}}
-<h1>Follow requests</h1>
+<h1>Follow Requests</h1>
{{template "requestlist.tmpl" (WithContext .Users $.Ctx)}}
{{end}}