diff --git a/fusionbox/blog/templates/blog/blog_detail.html b/fusionbox/blog/templates/blog/blog_detail.html index 3304678..2b16340 100644 --- a/fusionbox/blog/templates/blog/blog_detail.html +++ b/fusionbox/blog/templates/blog/blog_detail.html @@ -1,38 +1,41 @@ +{% extends "base.html" %} {% load fusionbox_tags %} -
-
- -
-

{{post.title}}

-
-

by {{ post.author }} | {{ post.created_at|date:"F d, Y" }}

+{% block content %} +
+
+ +
+

{{post.title}}

+
+

by {{ post.author }} | {{ post.created_at|date:"F d, Y" }}

-
    +
      {% for message in messages %} - {{ message }} + {{ message }} {% endfor %} -
    +
- {{ post.body }} - {% block comment %} - {% endblock %} -
- -
+ + +

Subscribe via RSS:

+ -{% block column %} + {% block column %} + {% endblock %} {% endblock %} diff --git a/fusionbox/blog/templates/blog/blog_list.html b/fusionbox/blog/templates/blog/blog_list.html index b36762c..352811d 100644 --- a/fusionbox/blog/templates/blog/blog_list.html +++ b/fusionbox/blog/templates/blog/blog_list.html @@ -1,37 +1,41 @@ +{% extends "base.html" %} {% load fusionbox_tags %} -
-
- -
- {% block headergroup %} -

Blog

-

We Would Love to Hear What You Have to Say.

+ +{% block content %} +
+
+ +
+ {% block headergroup %} +

Blog

+

We Would Love to Hear What You Have to Say.

+ {% endblock %} +
+ {% block subheadergroup %} +

This blog contains information & updates for our readers. This portion of our website will include postings from our representatives + and will include a variety of topics.

{% endblock %} -
- {% block subheadergroup %} -

This blog contains information & updates for our readers. This portion of our website will include postings from our representatives - and will include a variety of topics.

- {% endblock %} - - {% block articlefooter %} - {% endblock %} -
-
+ {% block articlefooter %} + {% endblock %} + + - + -{% block column %} + {% block column %} + {% endblock %} {% endblock %}