31 lines
856 B
PHP
31 lines
856 B
PHP
<?php if (!defined('TEKDEK')) die('Direct access not permitted.'); ?>
|
|
|
|
<article class="page-content">
|
|
<h1>Projects</h1>
|
|
|
|
<?php
|
|
$content = load_content('projects');
|
|
if ($content) {
|
|
echo $content;
|
|
} else {
|
|
?>
|
|
<h2>Active Projects</h2>
|
|
|
|
<div class="card-list">
|
|
<div class="card">
|
|
<h3>🌐 Persona Portal</h3>
|
|
<p>Platform for personas to publish content, tutorials, and showcase their work.</p>
|
|
<span class="badge">In Development</span>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>📚 Documentation Site</h3>
|
|
<p>This site — TekDek's central documentation and strategy hub.</p>
|
|
<span class="badge badge-active">Live</span>
|
|
</div>
|
|
</div>
|
|
|
|
<p><em>More projects coming as TekDek evolves.</em></p>
|
|
<?php } ?>
|
|
</article>
|