aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: 0f8b78c4c7f8829216c11667c322c05084b787d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php

require_once 'src/Controller/RouteController.php';

$GLOBALS['full_domain'] = 'https://hn.cmc.pub';
$GLOBALS['author_name'] = 'Christian Cleberg';
$GLOBALS['site_title'] = 'hn';

$route = new HN\Controllers\RouteController($_SERVER['REQUEST_URI']);
$route->routeUser();