diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/.htaccess | 1 | ||||
-rw-r--r-- | includes/template_end.html | 2 | ||||
-rw-r--r-- | includes/template_head_end.html | 18 | ||||
-rw-r--r-- | includes/template_head_start.html | 13 | ||||
-rw-r--r-- | includes/template_start.html | 2 |
5 files changed, 36 insertions, 0 deletions
diff --git a/includes/.htaccess b/includes/.htaccess new file mode 100644 index 0000000..a13210a --- /dev/null +++ b/includes/.htaccess @@ -0,0 +1 @@ +#Require all denied diff --git a/includes/template_end.html b/includes/template_end.html new file mode 100644 index 0000000..308b1d0 --- /dev/null +++ b/includes/template_end.html @@ -0,0 +1,2 @@ +</body> +</html> diff --git a/includes/template_head_end.html b/includes/template_head_end.html new file mode 100644 index 0000000..1aa5f12 --- /dev/null +++ b/includes/template_head_end.html @@ -0,0 +1,18 @@ +<!--#if expr='-z v("BODY_BG")'--> + <!--#set var="BODY_BG" value="BLACK"--> +<!--#endif--> +<!--#if expr='-z v("BODY_TX")'--> + <!--#set var="BODY_TX" value="WHITE"--> +<!--#endif--> +<!--#if expr='-z v("BODY_LN")'--> + <!--#set var="BODY_LN" value="#FFFF99"--> +<!--#endif--> +<!--#if expr='-z v("BODY_LV")'--> + <!--#set var="BODY_LV" value="#FFFF99"--> +<!--#endif--> +<!--#if expr='-z v("BODY_LA")'--> + <!--#set var="BODY_LA" value="#FF9999"--> +<!--#endif--> + +</head> +<body bgcolor="<!--#echo var="BODY_BG"-->" background="/images/leather.gif" text="<!--#echo var="BODY_TX"-->" link="<!--#echo var="BODY_LN"-->" vlink="<!--#echo var="BODY_LV"-->" alink="<!--#echo var="BODY_LA"-->"> diff --git a/includes/template_head_start.html b/includes/template_head_start.html new file mode 100644 index 0000000..8a4cac4 --- /dev/null +++ b/includes/template_head_start.html @@ -0,0 +1,13 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<head> + <meta http-equiv="imagetoolbar" content="no"> + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <title><!--#echo var="PAGE_TITLE"--> - Mystic House Fansite</title> + <script language="JavaScript"> + <!-- + if (window.top == window.self) { + location = "/frames.html"; + } + // --> + </script> diff --git a/includes/template_start.html b/includes/template_start.html new file mode 100644 index 0000000..63e9f81 --- /dev/null +++ b/includes/template_start.html @@ -0,0 +1,2 @@ +<!--#include virtual="./template_head_start.html"--> +<!--#include virtual="./template_head_end.html"--> |