14 lines
468 B
HTML
14 lines
468 B
HTML
{% extends "base.xhtml" %}
|
|
{% from "macros/page-hero.xhtml" import page_hero %}
|
|
{% block content %}
|
|
{% call page_hero("Platform", "Clusters", "Legacy page from imported template pack. Branding updated for RoleForge.") %}
|
|
<div class="dashboard-hero-actions">
|
|
<a href="/clusters/create" class="cta-button">Create cluster</a>
|
|
</div>
|
|
{% endcall %}
|
|
<section class="card">
|
|
<h2>Your Clusters</h2>
|
|
<div id="cluster-list-container"></div>
|
|
</section>
|
|
{% endblock %}
|