Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 1 | {% extends "blog/blog.js" %} |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 2 | |
| 3 | {% block content %} |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 4 | <div class="layout-wrapper layout-wrapper-background"> |
| 5 | <div class="web-content" id="blog-{{ name }}"> |
| 6 | |
| 7 | <div class="layout-main-section"> |
| 8 | <h2>{{ title }}</h2> |
| 9 | <div class="help">By {{ full_name }} on {{ updated }}</div> |
| 10 | <br> |
| 11 | {{ content_html }} |
| 12 | <hr><h3>Comments</h3> |
| 13 | <br> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame^] | 14 | <div class="blog-comments"> |
| 15 | {% for comment in comment_list %} |
| 16 | <div class="comment-row"> |
| 17 | <div class="comment-title"> |
| 18 | {{ comment.comment_by_fullname }} - {{ comment.comment_date }}: |
| 19 | {{ comment.comment_date_type }} |
| 20 | </div> |
| 21 | <p class="comment-content">{{ comment.comment }}</p> |
| 22 | <hr> |
| 23 | </div> |
| 24 | {% endfor %} |
| 25 | </div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 26 | </div> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 27 | |
| 28 | <div class="layout-side-section"> |
| 29 | <p><a href="blog.html">All Blogs</a></p> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame^] | 30 | <br /> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 31 | <h4>Subscribe</h4> |
| 32 | <p> |
| 33 | <img src="images/feed.png" style="margin-right: 4px; margin-bottom: -4px"> |
| 34 | <a href="rss.xml" target="_blank">RSS Feed</a> |
| 35 | </p> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame^] | 36 | <br /> |
| 37 | <h4>Recent Posts</h4> |
| 38 | <div class="recent-posts" style="min-height: 100px;"></div> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 39 | </div> |
| 40 | |
| 41 | <div style="clear: both"></div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 42 | </div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 43 | </div> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame^] | 44 | {% endblock %} |
| 45 | |
| 46 | {% block css %} |
| 47 | <style> |
| 48 | .comment-title { |
| 49 | color:#777; |
| 50 | } |
| 51 | |
| 52 | .comment-content { |
| 53 | margin-left: 20px; |
| 54 | } |
| 55 | |
| 56 | /* .comment-row { |
| 57 | padding: 5px 0px; |
| 58 | } |
| 59 | */ </style> |
| 60 | |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 61 | {% endblock %} |