{% set template_css = "../../css/templates/blog.css" %} {% extends "./layouts/base.html" %} {% block head_extra %} {# RSS discovery for readers and AI/aggregator crawlers #} {# BlogPosting structured data — entity attribution for answer engines #} {% endblock %} {% block body %}
{# Blog post #}

{{ content.name|sanitize_html }}

{{ content.post_body }}{# escaped elsewhere #}
{% if content.tag_list %} {% endif %}
{% if group.allow_comments %}
{% module "blog_comments" path="@hubspot/blog_comments", label="Blog comments" %}
{% endif %}
{# Recent posts listing #} {# This macro is used to format each recent post card and gets passed to the related_blog_posts HubL tag below #} {% macro related_posts(post, count, total) %} {% if count == 1 %} {% endif %} {% endmacro %} {% related_blog_posts limit=3, no_wrapper=True, post_formatter="related_posts" %}
{% endblock body %}