Put the profile stuff in p's instead of <ul>'s

This commit is contained in:
Christopher Allan Webber 2011-07-04 09:11:13 -05:00
parent b51c574188
commit 5c72d31d36
2 changed files with 19 additions and 14 deletions

View File

@ -257,3 +257,10 @@ ul.mediagoblin_messages {
background-color: #f7f7f7; background-color: #f7f7f7;
color:#272727; color:#272727;
} }
/* profile stuff */
.profile_content p, .profile_bio {
padding: 6px;
background-color: #393939;
}

View File

@ -17,19 +17,17 @@
#} #}
{% block profile_content -%} {% block profile_content -%}
<div> <div class="profile_content">
<ul>
{% if user.url %} {% if user.url %}
<li> <p class="profile_homepage">
<a href="{{ user.url }}">homepage</a> <a href="{{ user.url }}">homepage</a>
</li> </p>
{% endif %} {% endif %}
{% if user.bio %} {% if user.bio %}
<li> <p class="profile_bio">
{{ user.bio }} {{ user.bio }}
</li> </p>
{% endif %} {% endif %}
</ul>
</div> </div>
{% endblock %} {% endblock %}