orm to frontend connected. for a time, i'll be trying multiple solutions at once.

This commit is contained in:
2025-05-16 16:41:07 -06:00
parent 228cf1137b
commit a93c30c40f
38 changed files with 1442 additions and 2407 deletions
+5 -5
View File
@@ -1,15 +1,15 @@
<?php
require_once 'functions/init.php';
require_once 'functions/functions.php';
include_once 'components/head.php';
require_once 'functions/core.php';
include_once 'components/core/head.php';
echo home_content();
include_once 'components/foot.php';
include_once 'components/core/foot.php';
function home_content()
{
$content = '
$content = '
<div class="article">
<h1>Vintage Coding</h1>
<h3>Intentional Craftsmanship Over Ephemeral Trends</h3>
@@ -30,5 +30,5 @@ function home_content()
</div>
';
return $content;
return $content;
}