{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}
{% if image_url %}
{{ article['title'] }}
{% endif %}
{{ article['source_name'] }} {% if is_admin(user) %} {% if article.get('featured') %} ★ Featured {% endif %} {% if grade >= 9 %} Grade {{ grade }} {% elif grade >= 7 %} Grade {{ grade }} {% else %} Grade {{ grade }} {% endif %} {% endif %} {{ dt_ago(article.synced_at) if article.get('synced_at') else time_ago }}

{{ render_title(article['title']) }}

{% if article.get('content') %} {% if maturity_hidden(maturity, user) %} {% set _level = maturity %}{% include "_maturity_gate.html" %} {% else %}
{{ render_content(article['content']) }}
{% endif %} {% endif %}
Read on {{ article['source_name'] }} ↗ {% set _type = "news" %}{% set _uid = article['uid'] %}{% set _bookmarked = bookmarked %}{% include "_bookmark_button.html" %} {% set _type = "news" %}{% set _uid = article['uid'] %}{% set _owner = "" %}{% set _owner_name = "" %}{% set _class = "news-detail-back" %}{% include "_report_button.html" %} ← Back to News
{% with target_uid=article['uid'], target_type="news", comments=comments %} {% include "_comment_section.html" %} {% endwith %}
{% endblock %}