{{ article.title }}
{% if article.readtime %}(Read time is about {{article.readtime.minutes}} minutes)
{% endif %}
{% include 'metadata.inc.html' %}
{{ article.content }}
{% extends "base.html" %}
{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
{% block extra_meta %}
{% if PELICAN_SIMPLEGREY_TWITTER_CARD_ACCOUNT %}
{% endif %}
{% endblock %}
{% block content %}
{{ article.title }}
{% if article.readtime %}
(Read time is about {{article.readtime.minutes}} minutes)
{% endif %}
{% include 'metadata.inc.html' %}
{{ article.content }}
Comments !