bmc_hub/app/modules/links/templates/index.html

20 lines
596 B
HTML
Raw Normal View History

{% extends "shared/frontend/base.html" %}
{% block title %}Links{% endblock %}
{% block content %}
<div class="container-fluid py-4">
<div class="d-flex justify-content-between align-items-center mb-4">
<div>
<h1 class="h3 mb-1">Links / Endpoints</h1>
<p class="text-muted mb-0">Operational access layer module (phase 1 foundation)</p>
</div>
</div>
<div class="card border-0 shadow-sm">
<div class="card-body">
<p class="mb-0">Module page scaffold is active. Use API endpoints under <code>/api/v1/links</code>.</p>
</div>
</div>
</div>
{% endblock %}