brotherton-erpnext/erpnext/www/lms/templates/includes/article.html

30 lines
1.1 KiB
HTML
Raw Normal View History

<section class='article-top-section video-section-bg'>
<div class='container'>
<div class="row">
<div class="col-md-8">
2018-10-18 10:14:08 +00:00
<h2>{{ content.title }}</h2>
<span class="text-muted">
2018-10-18 10:14:08 +00:00
Published on {{ content.publish_date }}, by {{ content.author }}
</span>
</div>
<div class="col-md-4 text-right">
2018-10-18 10:14:08 +00:00
{% include "www/lms/templates/includes/lms-nav.html" %}
</div>
</div>
<hr>
</div>
</section>
<section class="article-content-section">
<div class='container'>
<div class="content">
2018-10-18 10:14:08 +00:00
{{ content.content }}
</div>
2018-10-18 10:14:08 +00:00
<div class="text-right">
{% include "www/lms/templates/includes/lms-nav.html" %}
</div>
<div class="mt-3 text-right">
<a class="text-muted" href="/report"><i class="octicon octicon-issue-opened" title="Report"></i> Report a
Mistake</a>
</div>
</div>
</section>