15 lines
323 B
PHP
15 lines
323 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';
|
|
|
|
include_once 'functions/article_functions.php';
|
|
echo article_card(1);
|
|
|
|
include_once 'components/foot.php';
|