diff --git a/static/css/style.css b/static/css/style.css
index 8dd3280..72edc3c 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1148,7 +1148,6 @@ section.identity .banner {
display: block;
width: calc(100% + 30px);
margin: -5px -15px 0px -15px;
- border-radius: 5px 0 0 0;
}
section.identity .icon {
@@ -1430,7 +1429,7 @@ form .post {
.post time {
display: block;
color: var(--color-text-duller);
- width: 65px;
+ width: 70px;
text-align: center;
background-color: var(--color-bg-main);
border-radius: 3px;
diff --git a/templates/identity/follows.html b/templates/identity/follows.html
index 0749015..c903f84 100644
--- a/templates/identity/follows.html
+++ b/templates/identity/follows.html
@@ -4,21 +4,23 @@
{% block subcontent %}
- {% for identity in page_obj %}
- {% include "activities/_identity.html" %}
- {% empty %}
-
- This person has no {% if inbound %}followers{% else %}follows{% endif %} yet.
-
- {% endfor %}
+
+ {% for identity in page_obj %}
+ {% include "activities/_identity.html" %}
+ {% empty %}
+
+ This person has no {% if inbound %}followers{% else %}follows{% endif %} yet.
+
+ {% endfor %}
-
{% endblock %}
diff --git a/templates/identity/view.html b/templates/identity/view.html
index d0b64f2..0c59723 100644
--- a/templates/identity/view.html
+++ b/templates/identity/view.html
@@ -89,31 +89,33 @@
{% block subcontent %}
- {% for post in page_obj %}
- {% include "activities/_post.html" %}
- {% empty %}
-
- {% if identity.local %}
- No posts yet.
- {% else %}
- No posts have been received by this server yet.
+
+ {% for post in page_obj %}
+ {% include "activities/_post.html" %}
+ {% empty %}
+
+ {% if identity.local %}
+ No posts yet.
+ {% else %}
+ No posts have been received by this server yet.
- {% if identity.profile_uri %}
- You may find historical posts at
- their original profile ➔
+ {% if identity.profile_uri %}
+ You may find historical posts at
+ their original profile ➔
+ {% endif %}
{% endif %}
+
+ {% endfor %}
+
+
{% endblock %}