aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mediagoblin/templates/mediagoblin/blog/blog_post_listing.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html b/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
index 46922de3..a1c35393 100644
--- a/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
+++ b/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
@@ -22,13 +22,12 @@
{% block title -%}
{% trans %}{{ blog_owner }} 's Blog{% endtrans %} — {{ super() }}
{%- endblock %}
-
{% block mediagoblin_content %}
- <div> <h1> {{ blog_owner }} 's Blog </h1></div>
+ <div class="b_list_owner"> <h1> {{ blog_owner }} 's Blog </h1></div>
<div>
{% for post in blog_posts[0:9] %}
- <div> <h2> {{ post.title }} </h2> </div>
- <div> <h3> {{ post.description }} </h3></div>
+ <div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2>{{ post.title }}</h2></a></div>
+ <div class="b_list_des"> <p>{{ post.description|safe }} </p></div>
{% endfor %}
</div>
{% endblock %}