{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% import "components/link.njk" as link %}

{# ========================================================================== #}
{# :: Default #}
{# ========================================================================== #}
{% macro default(classes, data) %}

	<article class="bp-c-article {{classes}}">
		<div class="bp-c-carticle__content">
			<header class="bp-c-article__header">
				<h2 class="bp-c-article__title">
					{{data.title}}
				</h2>

				{% if data.subtitle %}
					<h4 class="bp-c-article__subtitle">{{data.subtitle}}</h4>
				{% endif %}
			</header>

			<p class="bp-c-article__text">{{data.text}}</p>
		</div>

		{{link.default("bp-c-article__link bp-c-link--bold", data.link)}}
	</article>

{% endmacro %}
