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 }} |
Anand Doshi | 8c7e76b | 2012-07-11 18:40:57 +0530 | [diff] [blame^] | 12 | <hr> |
| 13 | <h3>Comments</h3><br> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 14 | <div class="blog-comments"> |
Anand Doshi | 8c7e76b | 2012-07-11 18:40:57 +0530 | [diff] [blame^] | 15 | <div class="no-result help hide"> |
| 16 | <p>Be the first one to comment</p> |
| 17 | <br /> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 18 | </div> |
Anand Doshi | 8c7e76b | 2012-07-11 18:40:57 +0530 | [diff] [blame^] | 19 | |
| 20 | {% include 'blog/comment.html' %} |
| 21 | |
| 22 | <button class="btn add-comment">Add Comment</button> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 23 | </div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 24 | </div> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 25 | |
| 26 | <div class="layout-side-section"> |
| 27 | <p><a href="blog.html">All Blogs</a></p> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 28 | <br /> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 29 | <h4>Subscribe</h4> |
| 30 | <p> |
| 31 | <img src="images/feed.png" style="margin-right: 4px; margin-bottom: -4px"> |
| 32 | <a href="rss.xml" target="_blank">RSS Feed</a> |
| 33 | </p> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 34 | <br /> |
| 35 | <h4>Recent Posts</h4> |
| 36 | <div class="recent-posts" style="min-height: 100px;"></div> |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 37 | </div> |
| 38 | |
| 39 | <div style="clear: both"></div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 40 | </div> |
Rushabh Mehta | bd7f723 | 2012-06-15 14:00:06 +0530 | [diff] [blame] | 41 | </div> |
Anand Doshi | 40fce89 | 2012-07-09 20:02:52 +0530 | [diff] [blame] | 42 | {% endblock %} |
| 43 | |
| 44 | {% block css %} |
| 45 | <style> |
| 46 | .comment-title { |
| 47 | color:#777; |
| 48 | } |
| 49 | |
| 50 | .comment-content { |
| 51 | margin-left: 20px; |
| 52 | } |
| 53 | |
| 54 | /* .comment-row { |
| 55 | padding: 5px 0px; |
| 56 | } |
| 57 | */ </style> |
| 58 | |
Anand Doshi | 72c945b | 2012-06-22 20:01:07 +0530 | [diff] [blame] | 59 | {% endblock %} |