diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/activities/_post.html | 4 | ||||
-rw-r--r-- | templates/identity/view.html | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/templates/activities/_post.html b/templates/activities/_post.html index 5de8bc7..3d455ea 100644 --- a/templates/activities/_post.html +++ b/templates/activities/_post.html @@ -2,7 +2,9 @@ {% load activity_tags %} <div class="post" data-takahe-id="{{ post.id }}"> - <img src="{{ post.author.local_icon_url }}" class="icon"> + <a href="{{ post.author.urls.view }}"> + <img src="{{ post.author.local_icon_url }}" class="icon"> + </a> <time> {% if post.visibility == 0 %} diff --git a/templates/identity/view.html b/templates/identity/view.html index 223c2bb..f877f59 100644 --- a/templates/identity/view.html +++ b/templates/identity/view.html @@ -28,6 +28,12 @@ {{ identity.name_or_handle }} <small>@{{ identity.handle }}</small> </h1> + {% if identity.summary %} + <div class="summary"> + {{ identity.safe_summary }} + </div> + {% endif %} + {% if not identity.local %} {% if identity.outdated and not identity.name %} <p class="system-note"> |