diff options
author | Jonas Kohl | 2024-09-06 13:19:19 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-06 13:19:19 +0200 |
commit | 2d8a37e7ac46aa100f2e460b024d21bae2883f5b (patch) | |
tree | f845d1f13c9fa6487b07bcb0d908ffa13463cdf8 /includes/template_head_end.php | |
parent | 4da448fe73005e3f3a57671575f99555793adb06 (diff) |
Move from SSI to PHP
Diffstat (limited to 'includes/template_head_end.php')
-rw-r--r-- | includes/template_head_end.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/template_head_end.php b/includes/template_head_end.php new file mode 100644 index 0000000..9eea077 --- /dev/null +++ b/includes/template_head_end.php @@ -0,0 +1,10 @@ +<?php +$BODY_BG ??= "BLACK"; +$BODY_TX ??= "WHITE"; +$BODY_LN ??= "#FFFF99"; +$BODY_LV ??= "#FFFF99"; +$BODY_LA ??= "#FF9999"; +?> + +</head> +<body bgcolor="<?= htmlentities($BODY_BG); ?>" background="/images/leather.gif" text="<?= htmlentities($BODY_TX); ?>" link="<?= htmlentities($BODY_LN); ?>" vlink="<?= htmlentities($BODY_LV); ?>" alink="<?= htmlentities($BODY_LA); ?>"> |