{% extends "base.html" %} {% block head %} {{ super() }} {% endblock head %} {% block title %}{{ article.title }}{% endblock %} {% block content %}

{{ article.title }}

By: {{ article.author }} On: {{ article.locale_date }}
In: {{ article.category }}
Tags: {% if article.tags %} {% for tag in article.tags %} #{{ tag }} {% endfor %} {% endif %}
{{ article.content }}

If you found the article helpful, please share or cite the article, and spread the word:


{% if AUTHOREMAIL %}

For any feedback or corrections, please write in to: {{ AUTHOREMAIL }}

{% else %}

For any feedback or corrections, please write in to: {{ AUTHOR }}

{% endif %} {% endblock %}