{# @var craft \craft\web\twig\variables\CraftVariable #}
{# @var entry \craft\elements\Entry #}
{#
News Entry Template
------------------------------------------------------------
When you view a single news on the website, this template gets loaded.
#}
{% extends "_layouts/_dev.html" %}
{% set bodyClass = "p-development p-cb p-modules" %}
{% if seomaticSiteMeta ?? null %}
{% set seomaticMeta = seomaticMeta | merge({'seoTitle': 'DEV: CB' }) %}
{% else %}
{% set appTitle = 'DEV: CB' %}
{% endif %}
{# -- CRITICAL CSS -- #}
{% block appInlineCSS %}
{% endblock %}
{% block appContent %}
{# -- Include Page Title -- #}
{% include '_molecules/pageTitle/_template.html' with {
opt: {
object: entry
}
} only %}
{# -- Nav -- #}
{% include 'dev/_nav.html' %}
{# Content Builder #}
{% include '_contentBuilders/_contentBuilderMatrix.html' with {
opt: {
modifiers: ['nested'],
object: entry,
context: '12:16'
}
} only %}