aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorFChannel <>2022-06-14 14:50:32 -0700
committerFChannel <>2022-06-19 12:53:29 -0700
commit7306338e7f23d652b6b0bfecddcee408a4227169 (patch)
tree58bac2a3a97b1f5456734f654cc6264e919016e7 /views
parent27d0796d7f775034f391ba8aaca99f2a81018842 (diff)
added sendtofollowers to cc incase not already sending to followers
ie. sending from other server than fchannel
Diffstat (limited to 'views')
-rw-r--r--views/catalog.html1
-rw-r--r--views/partials/posts.html2
2 files changed, 1 insertions, 2 deletions
diff --git a/views/catalog.html b/views/catalog.html
index 6a99d8f..f19c489 100644
--- a/views/catalog.html
+++ b/views/catalog.html
@@ -89,4 +89,3 @@
{{ template "partials/footer" .page }}
{{ template "partials/general_scripts" .page }}
-{{ template "partials/post_scripts" .page }}
diff --git a/views/partials/posts.html b/views/partials/posts.html
index 8ae1745..d57a199 100644
--- a/views/partials/posts.html
+++ b/views/partials/posts.html
@@ -48,7 +48,7 @@
<span class="subject"><b>{{ .Name }}</b></span>
<span class="name"><b>{{ if .AttributedTo }} {{.AttributedTo }} {{ else }} Anonymous {{ end }}</b></span>
<span class="tripcode"> {{ .TripCode }} </span>
- <span class="timestamp" data-utc="{{.Published | timeToUnix}}">{{ .Published | timeToReadableLong }} <a id="{{ .Id }}-anchor" href="/{{ $board.Name }}/{{ shortURL $board.Actor.Outbox $opId }}#{{ shortURL $board.Actor.Outbox .Id }}">No.</a> <a id="{{ .Id }}-link" title="{{ .Id }}" {{ if eq .Type "Note" }} href="javascript:quote('{{ $board.Actor.Id }}', '{{ $opId }}', '{{ .Id }}')" {{ end }}>{{ shortURL $board.Actor.Outbox .Id }}</a> {{ if ne .Type "Tombstone" }}[<a href="javascript:report('{{ $board.Actor.Id }}', '{{ .Id }}')">Report</a>]{{ end }}</span>
+ <span class="timestamp" data-utc="{{.Published | timeToUnix}}">{{ .Published | timeToReadableLong }} <a id="{{ .Id }}-anchor" href="/{{ $board.Name }}/{{ shortURL $board.Actor.Outbox $opId }}">No.</a> <a id="{{ .Id }}-link" title="{{ .Id }}" {{ if eq .Type "Note" }} href="javascript:quote('{{ $board.Actor.Id }}', '{{ $opId }}', '{{ .Id }}')" {{ end }}>{{ shortURL $board.Actor.Outbox .Id }}</a> {{ if ne .Type "Tombstone" }}[<a href="javascript:report('{{ $board.Actor.Id }}', '{{ .Id }}')">Report</a>]{{ end }}</span>
<p id="{{ .Id }}-content" style="white-space: pre-wrap; margin: 10px 30px 10px 30px;">{{ parseContent $board.Actor $opId .Content $thread .Id $page.PostType }}</p>
{{ if .Replies }}
{{ $replies := .Replies }}