tangled
alpha
login
or
join now
yoten.app
/
yoten
17
fork
atom
Yōten: A social tracker for your language learning journey built on the atproto.
17
fork
atom
overview
issues
pulls
pipelines
fix: add @ to profile handle
brookjeynes.dev
6 months ago
ad7ab23f
bbfbd817
verified
This commit was signed with the committer's
known signature
.
brookjeynes.dev
SSH Key Fingerprint:
SHA256:N3n3PCBSiXfS6EHlmGdx+LMEruJMj6FS2hqaXyfsw0s=
+3
-3
2 changed files
expand all
collapse all
unified
split
internal
server
views
friends.templ
partials
notification.templ
+2
-2
internal/server/views/friends.templ
···
11
11
<div class="container mx-auto max-w-2xl px-4 py-8">
12
12
<div class="flex items-center justify-between mb-8">
13
13
<div>
14
14
-
<h1 class="text-3xl font-bold text-gray-900">Friends</h1>
15
15
-
<p class="text-gray-600 mt-1">Connect with fellow language learners</p>
14
14
+
<h1 class="text-3xl font-bold">Friends</h1>
15
15
+
<p class="mt-1">Connect with fellow language learners</p>
16
16
</div>
17
17
</div>
18
18
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
+1
-1
internal/server/views/partials/notification.templ
···
13
13
<h1 class="font-semibold">New Follower</h1>
14
14
<p class="text-sm mt-1">
15
15
<a class="hover:underline" href={ templ.SafeURL("/" + params.Notification.ActorDid) }>
16
16
-
{ params.Notification.ActorDid }
16
16
+
@{ params.Notification.ActorBskyHandle }
17
17
</a> started following you
18
18
</p>
19
19
</div>