{% extends 'base.html' %} {% load wagtailcore_tags wagtailimages_tags seo_tags core_tags %} {% block title %}{{ page.title }} | No Hype AI{% endblock %} {% block head_meta %} {% canonical_url page as canonical %} {% article_og_image_url page as og_image %} {% if og_image %}{% endif %} {% if og_image %}{% endif %} {% endblock %} {% block content %}
Home / Articles / {{ page.title|truncatechars:40 }}
{% for tag in page.tags.all %} {{ tag.name }} {% endfor %} {{ page.first_published_at|date:"M j, Y" }} {{ page.read_time_mins }} min read

{{ page.title }}

{{ page.author.name }}
{% if page.author.role %}
{{ page.author.role }}
{% endif %}
{% if page.hero_image %}
{% image page.hero_image width-1200 class="w-full h-auto" %}
{% endif %}
{{ page.body }} {% article_json_ld page %}
{% if related_articles %}

Related Articles

View All
{% for article in related_articles %} {% endfor %}
{% endif %} {% if page.comments_enabled %}

Comments

{{ approved_comments|length }} response{{ approved_comments|length|pluralize }}
{% if approved_comments %}
{% for comment in approved_comments %}
{{ comment.author_name }}
{{ comment.body|linebreaks }}
Reply

Reply to {{ comment.author_name }}

{% csrf_token %}
{% if comment.replies.all %}
{% for reply in comment.replies.all %}
{{ reply.author_name }}
{{ reply.body|linebreaks }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No comments yet. Be the first to join the conversation.

{% endif %}

Join the conversation

Add your fresh comment below

{% if comment_form and comment_form.errors %}
There were some errors:
    {% if comment_form.non_field_errors %} {% for error in comment_form.non_field_errors %}
  • {{ error }}
  • {% endfor %} {% endif %} {% for field in comment_form %} {% if field.errors %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %}
{% endif %} {% endblock %}