# HG changeset patch # User Madhusudan.C.S # Date 1279116274 -19800 # Node ID 68fb7911c4387ffd8dbf5b2f1749f9f8d6adacc0 # Parent 61fc4aa7a09af0231e5eef5eca776f191c19aca6 Removed blog templates. diff -r 61fc4aa7a09a -r 68fb7911c438 project/templates/blog/post_detail.html --- a/project/templates/blog/post_detail.html Wed Jul 14 19:34:12 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,77 +0,0 @@ -{% extends "blog/base_blog.html" %} - - -{% block title %}{{ object.title }}{% endblock %} -{% block body_class %}{{ block.super }} post_detail{% endblock %} -{% block body_id %}post_{{ object.id }}{% endblock %} - - -{% block content_title %} -

{{ object.title }}

- -{% endblock %} - - -{% block content %} - {% load blog markup comments tagging_tags %} - -

{{ object.title }}

-

{{ object.publish|date:"j F Y" }}

- -
- {{ object.body|markdown:"safe" }} -
- - {% tags_for_object object as tag_list %} - {% if tag_list %} -

Related tags: - {% for tag in tag_list %} - {{ tag }}{% if not forloop.last %}, {% endif %} - {% endfor %} -

- {% endif %} - - {% get_comment_list for object as comment_list %} - {% if comment_list %} -
- -

Comments

- {% for comment in comment_list %} - {% if comment.is_public %} -
-
- {{ forloop.counter }} - {% if comment.user_url %}{{ comment.user_name }}{% else %}{{ comment.user_name }}{% endif %} says... -
- {{ comment.comment|urlizetrunc:"60"|markdown:"safe" }} -

Posted at {{ comment.submit_date|date:"P" }} on {{ comment.submit_date|date:"F j, Y" }}

-
- {% endif %} - {% endfor %} -
- {% endif %} - {% if user.is_authenticated %} - {% if object.allow_comments %} -
- {% render_comment_form for object %} -
- {% else %} -
-

Comments are closed.

-

Comments have been close for this post.

-
- {% endif %} - {% else %} -
-

Comments are closed.

-

Please login in to comment.

-
- {% endif %} -{% endblock %} diff -r 61fc4aa7a09a -r 68fb7911c438 project/templates/blog/post_list.html --- a/project/templates/blog/post_list.html Wed Jul 14 19:34:12 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -{% extends "blog/base_blog.html" %} - - -{% block title %}{% endblock %} -{% block body_class %}{{ block.super }} post_list{% endblock %} - - -{% block content_title %} -

Post archive

-{% endblock %} - - -{% block content %} -
- {% for post in object_list %} -
-

{{ post.title }}

-

{{ post.publish|date:"Y F d" }}

-

{{ post.tease }}

-
- {% endfor %} -
- - {% if is_paginated %} -

- {% if has_next %} - Older - {% endif %} - {% if has_next and has_previous %} | {% endif %} - {% if has_previous %} - Newer - {% endif %} -

- {% endif %} -{% endblock %}