blob: 163b112e2ef9b9179d56e6bc170132d9f4add355 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
require_once 'src/Controller/RouteController.php';
$GLOBALS['full_domain'] = 'https://hn.cleberg.net';
$GLOBALS['author_name'] = 'Christian Cleberg';
$GLOBALS['site_title'] = 'hn';
$route = new HN\Controllers\RouteController($_SERVER['REQUEST_URI']);
$route->routeUser();
|