2012-07-12 13:11:12 +00:00
|
|
|
{% extends "html/page.html" %}
|
|
|
|
|
|
|
|
{% block javascript %}
|
|
|
|
{% include "js/blog_page.js" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block css %}
|
|
|
|
{% include "css/blog_page.css" %}
|
|
|
|
{% endblock %}
|
2012-06-19 08:45:13 +00:00
|
|
|
|
2012-06-22 14:31:07 +00:00
|
|
|
{% block content %}
|
2013-02-21 08:55:30 +00:00
|
|
|
<div class="span12">
|
|
|
|
<h2>{{ title }}</h2>
|
2012-06-19 08:45:13 +00:00
|
|
|
|
2013-02-21 08:55:30 +00:00
|
|
|
<!-- begin blog content -->
|
|
|
|
<div class="help">By {{ full_name }} on {{ updated }}</div>
|
|
|
|
<br>
|
|
|
|
{{ content_html }}
|
|
|
|
<!-- end blog content -->
|
2012-07-12 13:11:12 +00:00
|
|
|
|
2013-02-21 08:55:30 +00:00
|
|
|
<hr>
|
|
|
|
<h3>Comments</h3><br>
|
|
|
|
<div class="blog-comments">
|
|
|
|
|
|
|
|
{% if not comment_list %}
|
|
|
|
<div class="alert no-comment">
|
|
|
|
<p>Be the first one to comment</p>
|
2012-06-15 08:30:06 +00:00
|
|
|
</div>
|
2013-02-21 08:55:30 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include 'html/comment.html' %}
|
|
|
|
</div>
|
|
|
|
<div><button class="btn add-comment">Add Comment</button></div>
|
|
|
|
<div style="display: none; margin-top: 10px;"
|
|
|
|
id="comment-form" class="well">
|
|
|
|
<div class="alert" style="display:none;"></div>
|
|
|
|
<form>
|
|
|
|
<p>
|
|
|
|
<input name="comment_by_fullname" placeholder="Your Name" />
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<input name="comment_by" placeholder="Your Email Id" />
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<textarea name="comment" placeholder="Comment" style="width: 300px; height: 120px;"/>
|
|
|
|
</textarea>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<button class="btn btn-info" id="submit-comment">Submit</button>
|
|
|
|
</form>
|
2012-06-15 08:30:06 +00:00
|
|
|
</div>
|
2013-02-21 08:55:30 +00:00
|
|
|
</div>
|
2012-06-22 14:31:07 +00:00
|
|
|
{% endblock %}
|