. */ require_once ROOT . '/php/replace.php'; require_once ROOT . '/php/execute.php'; function render_page(string $content) { $device = 'desktop'; $targets = [ '{{stylesheets}}' => import(ROOT . '/html/stylesheets.html'), '{{header}}' => execute(ROOT . '/php/header.php'), '{{content}}' => $content, '{{footer}}' => execute(ROOT . '/php/footer.php'), '{{device}}' => $device ]; $main_html = replace(ROOT . '/html/main.html', $targets); echo $main_html . "\n"; } function render_content(string $page) { render_page(import($page)); } ?>