{# ========================================================================== #}
{# :: Content  #}
{# ========================================================================== #}
{#
	The content of a changelog item passed and rendered by markdown content.
#}

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set number = ROUTEDATA.NUMBER %}
{% set title = ROUTEDATA.LOG.title %}
{% set content = ROUTEDATA.LOG.content %}

{# ========================================================================== #}
{# :: Partial #}
{# ========================================================================== #}
<section class="bp-l-section">
	<header class="bp-l-section__header">
		<h1 class="bp-l-section__title u-h1">{{number}} - {{title}}</h1>
	</header>

	<div class="bp-l-section__content bp-s-markdown-default bp-s-markdown-log">
		{{content | md | safe}}
	</div>
</section>
