Deploy: Complete TekDek documentation website with all content pages, CSS, and infrastructure

This commit is contained in:
ParzivalTD
2026-04-12 11:20:19 -04:00
parent 1be079d7a7
commit d8da25107e
29 changed files with 2627 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?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>