diff options
author | Andrew Godwin | 2022-11-11 23:04:43 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-11 23:04:43 -0700 |
commit | 8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 (patch) | |
tree | 3a9199c1d35a77d209cf424141fd4aa0e0694118 /templates/activities | |
parent | feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 (diff) | |
download | takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.gz takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.bz2 takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.zip |
Posting and fan-out both working
Diffstat (limited to 'templates/activities')
-rw-r--r-- | templates/activities/_post.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/activities/_post.html b/templates/activities/_post.html index ffd0032..2ac57f3 100644 --- a/templates/activities/_post.html +++ b/templates/activities/_post.html @@ -8,7 +8,9 @@ {% endif %} <h3 class="author"> - {{ post.author.name_or_handle }} <small>@{{ post.author.handle }}</small> + <a href="{{ post.author.urls.view }}"> + {{ post.author.name_or_handle }} <small>@{{ post.author.handle }}</small> + </a> </h3> <time> <a href="{{ post.urls.view }}">{{ post.created | timesince }} ago</a> |