10 lines
198 B
PHP
10 lines
198 B
PHP
<?php
|
|
ob_start();
|
|
|
|
echo $_SERVER['REQUEST_URI'];
|
|
|
|
include __DIR__ . '/../templates/index.html.php';
|
|
|
|
$output = ob_get_clean();
|
|
|
|
include __DIR__ . '/../templates/layout.html.php'; |