{% 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 }} public comment{{ approved_comments|length|pluralize }}

{% if request.GET.commented %}
{% if request.GET.commented == "approved" %} Comment posted! {% else %} Your comment has been posted and is awaiting moderation. {% endif %}
{% endif %} {% include "comments/_comment_list.html" %}

No comments yet. Be the first to comment.

{% include "comments/_comment_form.html" %}
{% endif %} {% endblock %}