blob: d87b128ddcb73fffe389f8a35db4462c59f67859 [file] [log] [blame]
Anand Doshi10bcf5e2012-06-26 18:54:10 +05301{% extends "blog/blog.js" %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05302
3{% block content %}
Anand Doshi72c945b2012-06-22 20:01:07 +05304 <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 Doshi8c7e76b2012-07-11 18:40:57 +053012 <hr>
13 <h3>Comments</h3><br>
Anand Doshi40fce892012-07-09 20:02:52 +053014 <div class="blog-comments">
Anand Doshi8c7e76b2012-07-11 18:40:57 +053015 <div class="no-result help hide">
16 <p>Be the first one to comment</p>
17 <br />
Anand Doshi40fce892012-07-09 20:02:52 +053018 </div>
Anand Doshi8c7e76b2012-07-11 18:40:57 +053019
20 {% include 'blog/comment.html' %}
21
22 <button class="btn add-comment">Add Comment</button>
Anand Doshi40fce892012-07-09 20:02:52 +053023 </div>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053024 </div>
Anand Doshi72c945b2012-06-22 20:01:07 +053025
26 <div class="layout-side-section">
27 <p><a href="blog.html">All Blogs</a></p>
Anand Doshi40fce892012-07-09 20:02:52 +053028 <br />
Anand Doshi72c945b2012-06-22 20:01:07 +053029 <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 Doshi40fce892012-07-09 20:02:52 +053034 <br />
35 <h4>Recent Posts</h4>
36 <div class="recent-posts" style="min-height: 100px;"></div>
Anand Doshi72c945b2012-06-22 20:01:07 +053037 </div>
38
39 <div style="clear: both"></div>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053040 </div>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053041 </div>
Anand Doshi40fce892012-07-09 20:02:52 +053042{% 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 Doshi72c945b2012-06-22 20:01:07 +053059{% endblock %}