brotherton-erpnext/erpnext/website/templates/html/blog_page.html

57 lines
1.3 KiB
HTML
Raw Normal View History

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
{% block content %}
<div class="layout-wrapper layout-wrapper-background">
<div class="web-content" id="blog-{{ name }}">
2012-06-19 08:45:13 +00:00
<div class="layout-main-section">
2012-07-12 13:11:12 +00:00
<h2>{{ title }}</h2>
2012-07-12 13:11:12 +00:00
<!-- begin blog content -->
<div class="help">By {{ full_name }} on {{ updated }}</div>
<br>
{{ content_html }}
<hr>
<h3>Comments</h3><br>
<div class="blog-comments">
2012-07-12 13:11:12 +00:00
{% if not comment_list %}
<div class="no-result help hide">
<p>Be the first one to comment</p>
<br />
</div>
2012-07-12 13:11:12 +00:00
{% endif %}
{% include 'html/comment.html' %}
</div>
2012-07-12 13:11:12 +00:00
<!-- end blog content -->
<button class="btn add-comment">Add Comment</button>
</div>
2012-06-15 08:30:06 +00:00
<div class="layout-side-section">
<p><a href="blog.html">All Blogs</a></p>
<br />
<h4>Subscribe</h4>
<p>
<img src="images/feed.png" style="margin-right: 4px; margin-bottom: -4px">
<a href="rss.xml" target="_blank">RSS Feed</a>
</p>
<br />
<h4>Recent Posts</h4>
<div class="recent-posts" style="min-height: 100px;"></div>
2012-06-15 08:30:06 +00:00
</div>
<div style="clear: both"></div>
2012-06-15 08:30:06 +00:00
</div>
</div>
{% endblock %}