20 lines
546 B
Text
20 lines
546 B
Text
---
|
|
layout: base
|
|
---
|
|
|
|
<div class="region" style="--region-space-top: var(--space-xl-2xl)">
|
|
<div class="wrapper flow prose">
|
|
<h1 class="gradient-text">{{ title }}</h1>
|
|
{{ content | safe }}
|
|
|
|
<h2>Tracks</h2>
|
|
<div class="feature | region region-space-l">
|
|
<custom-masonry layout="50-50">
|
|
{% set projectTracks = collections.tracksByProject[project] %}
|
|
{% for track in projectTracks %}
|
|
{% include "partials/card-mix-track.njk" %}
|
|
{% endfor %}
|
|
</custom-masonry>
|
|
</div>
|
|
</div>
|
|
</div>
|