{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} {% block page_title %}{{ article.title|striptags }}{% endblock %} {% if article.summary %} {% block page_description %}{{ article.summary|striptags }}{% endblock %} {% block card_type %}summary_large_image{% endblock %} {% if article.unfurlimage %} {% block page_image %}https://electrumsv.io/{{ article.unfurlimage }}{% endblock %} {% endif %} {% endif %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{% if article.modified %}
Last updated:
{% endif %} {% if article.authors %}
By {% for author in article.authors %} {{ author }} {% endfor %}
{% endif %}
{{ article.content }}
{% if article.category %} {% endif %} {% if article.tags %}
Tags: {% for tag in article.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endblock %}