You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
625 B
23 lines
625 B
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ article.title }}{% endblock %}
|
|
|
|
{% block content_title %}{{ article.url }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<header>
|
|
<h1 class="title">{{ article.title }} - {{ article.lang }}</h1>
|
|
<p class="byline">By <a href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a> | {{ article.date.strftime('%B %d, %Y') }}</p>
|
|
</header>
|
|
{% if article.toc %}
|
|
<h2>Table of Contents</h2>
|
|
<nav>
|
|
{{ article.toc }}
|
|
</nav>
|
|
{% endif %}
|
|
<section class="content">
|
|
{{ article.content }}
|
|
</section>
|
|
<footer class="footer">
|
|
</footer>
|
|
{% endblock %}
|