2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-06-17 21:57:22 +02:00
|
|
|
<div class="inner"><h1>Peks<a id="hidea" href="enigma.php">e</a>ntard</h1></div>
|
2019-06-04 14:49:19 +02:00
|
|
|
|
2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
2019-06-04 14:53:12 +02:00
|
|
|
$customBackgroundId = "bg_pek";
|
2019-05-18 17:58:23 +02:00
|
|
|
$pageTitle = "Peksentard";
|
|
|
|
include("includes/template.php"); // Display template with variable content
|
2019-06-08 13:00:46 +02:00
|
|
|
?>
|