just using php as template engine
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s

This commit is contained in:
2023-10-21 20:47:11 +02:00
parent 700f657038
commit 646ecfe95e
11 changed files with 222 additions and 201 deletions

View File

@ -110,6 +110,7 @@ class Page
//render template by running include
ob_start();
extract($this->variables);
include($templatefile);
$pagecontent = ob_get_contents();
ob_end_clean();