Files
web/index.php
T

24 lines
889 B
PHP

<?php
// Initializes environment variables and other stuff.
// if (!isset($_SESSION['initialized']))
require_once 'functions/init.php';
require_once 'functions/functions.php';
include_once 'components/head.php';
echo home_content();
include_once 'components/foot.php';
function home_content()
{
$content = '
<div class="article">
<p>This site is intended to be a platform for exposing, celebrating, and sharing the style of Vintage Coding. Topics from hardware to software and kernel to web, this site aims to cover it all.</p>
<p>Vintage Coding is as much a mindset as it is a style. Vibe Coding is to Vintage Coding as Yin is to Yang. Vintage is relating to or denoting something of high quality. For example, vintage clothes from decades ago are more durable than the clothes of today which rip and tear after little use.</p>
</div>
';
return $content;
}