2012-07-12 13:11:12 +00:00
|
|
|
{% extends "html/page.html" %}
|
|
|
|
|
|
|
|
{% block javascript %}
|
|
|
|
{% include "js/blog_page.js" %}
|
2012-08-03 08:43:30 +00:00
|
|
|
{% include "js/blog_subscribe.js" %}
|
2012-07-12 13:11:12 +00:00
|
|
|
{% 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 %}
|
|
|
|
<div class="layout-wrapper layout-wrapper-background">
|
|
|
|
<div class="web-content" id="blog-{{ name }}">
|
2012-06-19 08:45:13 +00:00
|
|
|
|
2012-06-22 14:31:07 +00:00
|
|
|
<div class="layout-main-section">
|
2012-07-12 13:11:12 +00:00
|
|
|
|
2012-06-22 14:31:07 +00:00
|
|
|
<h2>{{ title }}</h2>
|
2012-07-12 13:11:12 +00:00
|
|
|
|
|
|
|
<!-- begin blog content -->
|
2012-06-22 14:31:07 +00:00
|
|
|
<div class="help">By {{ full_name }} on {{ updated }}</div>
|
|
|
|
<br>
|
|
|
|
{{ content_html }}
|
2012-07-12 19:44:52 +00:00
|
|
|
<!-- end blog content -->
|
|
|
|
|
2012-07-11 13:10:57 +00:00
|
|
|
<hr>
|
|
|
|
<h3>Comments</h3><br>
|
2012-07-09 14:32:52 +00:00
|
|
|
<div class="blog-comments">
|
2012-07-12 13:11:12 +00:00
|
|
|
|
|
|
|
{% if not comment_list %}
|
2012-07-11 13:10:57 +00:00
|
|
|
<div class="no-result help hide">
|
|
|
|
<p>Be the first one to comment</p>
|
|
|
|
<br />
|
2012-07-09 14:32:52 +00:00
|
|
|
</div>
|
2012-07-12 13:11:12 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include 'html/comment.html' %}
|
2012-07-09 14:32:52 +00:00
|
|
|
</div>
|
2012-07-26 13:41:44 +00:00
|
|
|
<button class="btn add-comment">Add Comment</button>
|
2012-06-22 14:31:07 +00:00
|
|
|
</div>
|
2012-06-15 08:30:06 +00:00
|
|
|
|
2012-06-22 14:31:07 +00:00
|
|
|
<div class="layout-side-section">
|
|
|
|
<p><a href="blog.html">All Blogs</a></p>
|
2012-07-09 14:32:52 +00:00
|
|
|
<br />
|
2012-08-03 08:43:30 +00:00
|
|
|
{% block blog_subscribe %}
|
|
|
|
{% include "html/blog_subscribe.html" %}
|
|
|
|
{% endblock %}
|
2012-07-09 14:32:52 +00:00
|
|
|
<br />
|
|
|
|
<h4>Recent Posts</h4>
|
|
|
|
<div class="recent-posts" style="min-height: 100px;"></div>
|
2012-06-15 08:30:06 +00:00
|
|
|
</div>
|
2012-06-22 14:31:07 +00:00
|
|
|
|
|
|
|
<div style="clear: both"></div>
|
2012-06-15 08:30:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-06-22 14:31:07 +00:00
|
|
|
{% endblock %}
|