30 lines
945 B
HTML
30 lines
945 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title }}{% endblock %}
|
|
{% block content %}
|
|
<section id="content">
|
|
<article>
|
|
<header>
|
|
<h1>
|
|
<a href="{{ SITEURL }}/{{ article.url }}"
|
|
rel="bookmark"
|
|
title="Permalink to {{ article.title }}">
|
|
{{ article.title }}
|
|
</a>
|
|
</h1>
|
|
</header>
|
|
<div class="entry-content">
|
|
<div class="panel">
|
|
<div class="panel-body">
|
|
{% include "includes/article_info.html" %}
|
|
</div>
|
|
</div>
|
|
{{ article.content }}
|
|
</div>
|
|
<!-- /.entry-content -->
|
|
{% include 'includes/addthis.html' %}
|
|
{% include 'includes/comments.html' %}
|
|
</article>
|
|
</section>
|
|
|
|
{% endblock %}
|