diff --git a/mediagoblin/templates/mediagoblin/utils/profile.html b/mediagoblin/templates/mediagoblin/utils/profile.html index 72a285d2..cd60bbfc 100644 --- a/mediagoblin/templates/mediagoblin/utils/profile.html +++ b/mediagoblin/templates/mediagoblin/utils/profile.html @@ -17,17 +17,19 @@ #} {% block profile_content -%} -
- {% if user.url %} -

- homepage -

- {% endif %} + {% if user.url or user.bio %} +
+ {% if user.url %} + + {% endif %} - {% if user.bio %} -

- {{ user.bio }} -

- {% endif %} -
+ {% if user.bio %} +
+ {{ user.bio }} +
+ {% endif %} +
+ {% endif %} {% endblock %}