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,27 @@
<?php if (!defined('TEKDEK')) die('Direct access not permitted.'); ?>
<article class="page-content">
<h1>Tools &amp; Tech</h1>
<?php
$content = load_content('tools');
if ($content) {
echo $content;
} else {
?>
<h2>Infrastructure</h2>
<ul>
<li><strong>Gitea</strong> — Git repository hosting (<code>git.tekdek.dev</code>)</li>
<li><strong>BookStack</strong> — Documentation wiki (<code>docs.tekdek.dev</code>)</li>
<li><strong>Web Server</strong> — Site hosting (<code>web.tekdek.dev</code>)</li>
</ul>
<h2>Stack</h2>
<ul>
<li>PHP (no framework — lean and intentional)</li>
<li>Markdown for content</li>
<li>CSS (custom, no frameworks)</li>
<li>Vanilla JavaScript</li>
</ul>
<?php } ?>
</article>