New backgrounds 2

This commit is contained in:
Arthur 2019-06-04 14:53:12 +02:00
parent f02910ba28
commit bda630d9bb
8 changed files with 4 additions and 4 deletions

BIN
assets/images/bg_boo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
assets/images/bg_gli.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
assets/images/bg_pek.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
assets/images/bg_ver.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View file

@ -4,7 +4,7 @@ ob_start(); // Start reading html
<h1>Boomsouffle</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "boo_bg.jpg";
$customBackgroundId = "bg_boo";
$pageTitle = "Boomsouffle";
include("includes/template.php"); // Display template with variable content
?>

View file

@ -5,7 +5,7 @@ ob_start(); // Start reading html
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "gli_bg.jpg";
$customBackgroundId = "bg_gli";
$pageTitle = "Glissefondor";
include("includes/template.php"); // Display template with variable content
?>

View file

@ -7,7 +7,7 @@ ob_start(); // Start reading html
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "pek_bg.jpg";
$customBackgroundId = "bg_pek";
$pageTitle = "Peksentard";
include("includes/template.php"); // Display template with variable content
?>

View file

@ -4,7 +4,7 @@ ob_start(); // Start reading html
<h1>Verredaigle</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "ver_bg.jpg";
$customBackgroundId = "bg_ver";
$pageTitle = "Verredaigle";
include("includes/template.php"); // Display template with variable content
?>