15 lines
421 B
PHP
15 lines
421 B
PHP
|
|
<?php
|
||
|
|
$pageTitle = 'AudioCore V1.5';
|
||
|
|
ob_start();
|
||
|
|
?>
|
||
|
|
<section class="card">
|
||
|
|
<div class="badge">Foundation</div>
|
||
|
|
<h1 style="margin-top:16px; font-size:32px;">AudioCore V1.5</h1>
|
||
|
|
<p style="color:var(--muted); font-size:16px; max-width:680px;">
|
||
|
|
New core scaffold. Modules will live under /modules and admin will manage navigation.
|
||
|
|
</p>
|
||
|
|
</section>
|
||
|
|
<?php
|
||
|
|
$content = ob_get_clean();
|
||
|
|
require __DIR__ . '/layout.php';
|