diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-04 09:11:13 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-04 09:11:13 -0500 |
commit | 5c72d31d36bad3aee04e2ec46259ba797a352c2b (patch) | |
tree | 565a47bd9d9c7877eda5554db44abd5f324ae46d /mediagoblin/templates | |
parent | b51c574188af117f557c8e871bd53fdcbd9d7692 (diff) | |
download | mediagoblin-5c72d31d36bad3aee04e2ec46259ba797a352c2b.tar.lz mediagoblin-5c72d31d36bad3aee04e2ec46259ba797a352c2b.tar.xz mediagoblin-5c72d31d36bad3aee04e2ec46259ba797a352c2b.zip |
Put the profile stuff in p's instead of <ul>'s
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/utils/profile.html | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/mediagoblin/templates/mediagoblin/utils/profile.html b/mediagoblin/templates/mediagoblin/utils/profile.html index 21468033..72a285d2 100644 --- a/mediagoblin/templates/mediagoblin/utils/profile.html +++ b/mediagoblin/templates/mediagoblin/utils/profile.html @@ -17,19 +17,17 @@ #} {% block profile_content -%} - <div> - <ul> - {% if user.url %} - <li> - <a href="{{ user.url }}">homepage</a> - </li> - {% endif %} - - {% if user.bio %} - <li> - {{ user.bio }} - </li> - {% endif %} - </ul> + <div class="profile_content"> + {% if user.url %} + <p class="profile_homepage"> + <a href="{{ user.url }}">homepage</a> + </p> + {% endif %} + + {% if user.bio %} + <p class="profile_bio"> + {{ user.bio }} + </p> + {% endif %} </div> {% endblock %} |