Put the profile stuff in p's instead of <ul>'s
This commit is contained in:
parent
b51c574188
commit
5c72d31d36
@ -257,3 +257,10 @@ ul.mediagoblin_messages {
|
||||
background-color: #f7f7f7;
|
||||
color:#272727;
|
||||
}
|
||||
|
||||
/* profile stuff */
|
||||
|
||||
.profile_content p, .profile_bio {
|
||||
padding: 6px;
|
||||
background-color: #393939;
|
||||
}
|
||||
|
@ -17,19 +17,17 @@
|
||||
#}
|
||||
|
||||
{% block profile_content -%}
|
||||
<div>
|
||||
<ul>
|
||||
{% if user.url %}
|
||||
<li>
|
||||
<a href="{{ user.url }}">homepage</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
<div class="profile_content">
|
||||
{% if user.url %}
|
||||
<p class="profile_homepage">
|
||||
<a href="{{ user.url }}">homepage</a>
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
{% if user.bio %}
|
||||
<li>
|
||||
{{ user.bio }}
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% if user.bio %}
|
||||
<p class="profile_bio">
|
||||
{{ user.bio }}
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user