implemented database, article cards, and parsing from markdown.

This commit is contained in:
Joshua Ashton
2025-03-19 23:27:20 -06:00
parent 3b794ae87d
commit 5af0547864
16 changed files with 426 additions and 20 deletions
+11 -13
View File
@@ -1,16 +1,14 @@
<!DOCTYPE html>
<html>
<?php
<head>
<link href="css/base.css" rel="stylesheet" type="text/css">
<link href="css/text.css" rel="stylesheet" type="text/css">
</head>
// Initializes environment variables and other stuff.
// if (!isset($_SESSION['initialized']))
require_once 'functions/init.php';
<body>
<div class="card">
<h1>Under Construction</h1>
<p>Come back 5.25.2025</p>
</div>
</body>
require_once 'functions/functions.php';
</html>
include_once 'components/head.php';
include_once 'functions/article_functions.php';
echo article_card(1);
include_once 'components/foot.php';