{% extends "partials/_base.html" %} {# Page title: #} {% block title %}{{ article.title|lower }} | {{ SITENAME|lower }}{% endblock %} {# Page metadata: #} {% block meta %} {% endblock %} {# OpenGraph metadata: #} {% block opengraph %} {% endblock %} {# Page styles: #} {% block styles %} {% assets output="css/lightbulb.%(version)s.css", "css/lightbulb.css" %} {% endassets %} {% endblock %} {# Page content: #} {% block content %}

{{ article.title }}

Posted on {{ article.locale_date }}
{{ article.content }}
{% if article.prev_article or article.next_article %}
{% if article.prev_article %} {{ article.prev_article.title }} {% endif %}
{% if article.next_article %} {{ article.next_article.title }} {% endif %}
{% endif %} {% endblock %}