28 lines
823 B
PHP
28 lines
823 B
PHP
<?php if (!defined('TEKDEK')) die('Direct access not permitted.'); ?>
|
|
|
|
<article class="page-content">
|
|
<h1>Tools & 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>
|