{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block head -%} {{ super() -}} {%- if article.summary -%} {%- endif -%} {% endblock %} {% block title %}{{ article.title | striptags }}{% endblock %} {% block extra_head %} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% endblock %} {% block content %}

{{ article.title | markdown }}

{%- if article.status != "published" %}

Not published. This is a {{ article.status }}.

{%- endif %}
{{ article.content }}
{%- if article.hn_id or article.reddit_url %}

Discuss on: {%- if article.hn_id %} Hacker News {%- endif %} {%- if article.hn_id and article.reddit_url %} or {% endif %} {%- if article.reddit_url %} Reddit {%- endif -%} .

{%- endif %} {%- endblock %}