blob: 6f7796b0b677a97d8bf8428f69e38bc9f838fb78 [file] [log] [blame]
Anand Doshi51146c02012-07-12 18:41:12 +05301{% extends "html/page.html" %}
2
3{% block javascript %}
4 {% include "js/blog_page.js" %}
5{% endblock %}
6
7{% block css %}
8 {% include "css/blog_page.css" %}
9{% endblock %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053010
11{% block content %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053012<div class="span12">
13 <h2>{{ title }}</h2>
Anand Doshi72c945b2012-06-22 20:01:07 +053014
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053015 <!-- begin blog content -->
Rushabh Mehta676a5682013-03-07 18:51:10 +053016 <div class="help" style="color: #aaa">
17 {{ blogger_info and blogger_info.full_name or full_name }} wrote this on {{ updated }}</div>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053018 <br>
19 {{ content_html }}
20 <!-- end blog content -->
Rushabh Mehta676a5682013-03-07 18:51:10 +053021 {% if blogger_info %}
22 <hr />
23 <div class="row">
24 <div class="span2">
25 <div class="avatar avatar-large">
26 <img src="{{ blogger_info.avatar }}" />
27 </div>
28 </div>
29 <div class="span10">
30 <h4>{{ blogger_info.full_name }}</h4>
31 <p>{{ blogger_info.bio }}</p>
32 <p><a href="blog?by={{ blogger_info.name }}&by_name={{ blogger_info.full_name }}">
33 All posts by {{ blogger_info.full_name }}</a></p>
34 </div>
35 </div>
36 {% endif %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053037 <hr>
38 <h3>Comments</h3><br>
39 <div class="blog-comments">
40
41 {% if not comment_list %}
Rushabh Mehta676a5682013-03-07 18:51:10 +053042 <div class="no-comment">
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053043 <p>Be the first one to comment</p>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053044 </div>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053045 {% endif %}
46
47 {% include 'html/comment.html' %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053048 </div>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053049 <div><button class="btn add-comment">Add Comment</button></div>
50 <div style="display: none; margin-top: 10px;"
Rushabh Mehta676a5682013-03-07 18:51:10 +053051 id="comment-form">
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053052 <div class="alert" style="display:none;"></div>
53 <form>
Rushabh Mehta676a5682013-03-07 18:51:10 +053054 <fieldset>
55 <input name="comment_by_fullname" placeholder="Your Name" type="text"/><br>
56 <input name="comment_by" placeholder="Your Email Id" type="text"/><br>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053057 <textarea name="comment" placeholder="Comment" style="width: 300px; height: 120px;"/>
Rushabh Mehta676a5682013-03-07 18:51:10 +053058 </textarea><br>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053059 <button class="btn btn-info" id="submit-comment">Submit</button>
Rushabh Mehta676a5682013-03-07 18:51:10 +053060 </fieldset>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053061 </form>
62 </div>
Rushabh Mehta676a5682013-03-07 18:51:10 +053063 <hr>
64 <a href="blog">Show posts by everyone</p>
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053065</div>
Anand Doshi72c945b2012-06-22 20:01:07 +053066{% endblock %}