aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
author3rd Infantry Division <thirdid@3rd-infantry-division.org>2011-04-18 18:41:57 -0400
committer3rd Infantry Division <thirdid@3rd-infantry-division.org>2011-04-18 18:41:57 -0400
commiteb5ec4457a826bf6edadc9fa1816fac94d4a5c6a (patch)
tree5d99f21c01f8ed598631456acf3e0f576b6e610b /themes
parent55111dfa67353632608240a13c0fcc7b47b1c843 (diff)
downloadbayonetcms-eb5ec4457a826bf6edadc9fa1816fac94d4a5c6a.tar.gz
Adjusted the Bayonet license (some files may have been missed)
Diffstat (limited to 'themes')
-rw-r--r--themes/default/footer.php6
-rw-r--r--themes/default/header.php6
-rw-r--r--themes/default/include/functions.php20
-rw-r--r--themes/default/index.php21
-rw-r--r--themes/default/navigation.php24
-rw-r--r--themes/gttheme/footer.php4
-rw-r--r--themes/gttheme/header.php6
-rw-r--r--themes/gttheme/include/functions.php19
-rw-r--r--themes/gttheme/index.php21
-rw-r--r--themes/gttheme/navigation.php23
-rw-r--r--themes/new/footer.php6
-rw-r--r--themes/new/header.php6
-rw-r--r--themes/new/include/functions.php19
-rw-r--r--themes/new/index.php23
-rw-r--r--themes/new/navigation.php25
-rw-r--r--themes/throwback/footer.php4
-rw-r--r--themes/throwback/header.php6
-rw-r--r--themes/throwback/include/functions.php20
-rw-r--r--themes/throwback/index.php21
-rw-r--r--themes/throwback/navigation.php23
20 files changed, 223 insertions, 80 deletions
diff --git a/themes/default/footer.php b/themes/default/footer.php
index e971b9f..8c9d3de 100644
--- a/themes/default/footer.php
+++ b/themes/default/footer.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
$phpversion = preg_replace('/[a-z-]/', '', phpversion());
$mtime = explode(' ', microtime());
@@ -50,4 +50,4 @@ $debug_output = sprintf("Page generated in %.3f seconds | Memory: real(%.3fmb) p
</body>
</html>
<?php ob_flush();?>
- \ No newline at end of file
+
diff --git a/themes/default/header.php b/themes/default/header.php
index 76dc2f9..a9b043b 100644
--- a/themes/default/header.php
+++ b/themes/default/header.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
global $config;
ob_start();
@@ -37,4 +37,4 @@ $starttime = $starttime[1] + $starttime[0];
<link rel="stylesheet" type="text/css" href="<?php echo self::$primary_css; ?>" media="screen"/>
</head>
-<body> \ No newline at end of file
+<body>
diff --git a/themes/default/include/functions.php b/themes/default/include/functions.php
index 4a401fd..4aeeb14 100644
--- a/themes/default/include/functions.php
+++ b/themes/default/include/functions.php
@@ -1,4 +1,22 @@
<?php
+/**
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
/* EVERY THEME SHOULD HAVE THIS FILE WITH THE FUNCTIONS OPENCONTENT() & CLOSECONTENT() */
@@ -37,4 +55,4 @@
CloseContent();
}
-?> \ No newline at end of file
+?>
diff --git a/themes/default/index.php b/themes/default/index.php
index 3d02ec1..3da1144 100644
--- a/themes/default/index.php
+++ b/themes/default/index.php
@@ -1,11 +1,20 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit [link] for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Begin try/catch block */
diff --git a/themes/default/navigation.php b/themes/default/navigation.php
index 5765712..d90365a 100644
--- a/themes/default/navigation.php
+++ b/themes/default/navigation.php
@@ -1,13 +1,23 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit www.eodesign.com/cms for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
- ?>
+
+?>
<table border="0" cellspacing="0" class="navLinks">
<tr>
<td>&nbsp;&nbsp;<a href="index.php">HOME</a>&nbsp;&nbsp;</td>
diff --git a/themes/gttheme/footer.php b/themes/gttheme/footer.php
index 72ddb3a..42b481f 100644
--- a/themes/gttheme/footer.php
+++ b/themes/gttheme/footer.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
$phpversion = preg_replace('/[a-z-]/', '', phpversion());
$mtime = explode(' ', microtime());
diff --git a/themes/gttheme/header.php b/themes/gttheme/header.php
index 76dc2f9..a9b043b 100644
--- a/themes/gttheme/header.php
+++ b/themes/gttheme/header.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
global $config;
ob_start();
@@ -37,4 +37,4 @@ $starttime = $starttime[1] + $starttime[0];
<link rel="stylesheet" type="text/css" href="<?php echo self::$primary_css; ?>" media="screen"/>
</head>
-<body> \ No newline at end of file
+<body>
diff --git a/themes/gttheme/include/functions.php b/themes/gttheme/include/functions.php
index 4a401fd..6856262 100644
--- a/themes/gttheme/include/functions.php
+++ b/themes/gttheme/include/functions.php
@@ -1,4 +1,21 @@
<?php
+/**
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
/* EVERY THEME SHOULD HAVE THIS FILE WITH THE FUNCTIONS OPENCONTENT() & CLOSECONTENT() */
@@ -37,4 +54,4 @@
CloseContent();
}
-?> \ No newline at end of file
+?>
diff --git a/themes/gttheme/index.php b/themes/gttheme/index.php
index b5ac212..5ed718f 100644
--- a/themes/gttheme/index.php
+++ b/themes/gttheme/index.php
@@ -1,11 +1,20 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit [link] for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Begin try/catch block */
diff --git a/themes/gttheme/navigation.php b/themes/gttheme/navigation.php
index 5765712..69c660c 100644
--- a/themes/gttheme/navigation.php
+++ b/themes/gttheme/navigation.php
@@ -1,13 +1,22 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit www.eodesign.com/cms for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
- ?>
+?>
<table border="0" cellspacing="0" class="navLinks">
<tr>
<td>&nbsp;&nbsp;<a href="index.php">HOME</a>&nbsp;&nbsp;</td>
diff --git a/themes/new/footer.php b/themes/new/footer.php
index 0aab911..9e4cb00 100644
--- a/themes/new/footer.php
+++ b/themes/new/footer.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
$phpversion = preg_replace('/[a-z-]/', '', phpversion());
$mtime = explode(' ', microtime());
@@ -54,4 +54,4 @@ $debug_output = sprintf("Page generated in %.3f seconds | Memory: real(%.3fmb) p
</body>
</html>
<?php ob_flush();?>
- \ No newline at end of file
+
diff --git a/themes/new/header.php b/themes/new/header.php
index 353a083..f1e9f0c 100644
--- a/themes/new/header.php
+++ b/themes/new/header.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
global $config;
ob_start();
@@ -52,4 +52,4 @@ $starttime = $starttime[1] + $starttime[0];
</head>
-<body> \ No newline at end of file
+<body>
diff --git a/themes/new/include/functions.php b/themes/new/include/functions.php
index ec2e6e2..1a1abbc 100644
--- a/themes/new/include/functions.php
+++ b/themes/new/include/functions.php
@@ -1,4 +1,21 @@
<?php
+/**
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
/* EVERY THEME SHOULD HAVE THIS FILE WITH THE FUNCTIONS OPENCONTENT() & CLOSECONTENT() */
@@ -31,4 +48,4 @@
{
}
-?> \ No newline at end of file
+?>
diff --git a/themes/new/index.php b/themes/new/index.php
index 17bbc46..750cc1f 100644
--- a/themes/new/index.php
+++ b/themes/new/index.php
@@ -1,11 +1,20 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit [link] for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Begin try/catch block */
@@ -81,4 +90,4 @@ catch(Exception $e)
"<style>td.short{width:100%;}</style><table style=\"width:0;\"><tr><th>Code</th>" . "<td class=\"short\">" . $e->getCode() . "</td>" . "</tr><tr><th>In File</th>" . "<td class=\"short\">" . $e->getFile() . "</td>" . "</tr></table>" . $e->getLine() . " - " . $e->getMessage() . "<br/>"
);
}
-?> \ No newline at end of file
+?>
diff --git a/themes/new/navigation.php b/themes/new/navigation.php
index 45bcdf9..6a99e5a 100644
--- a/themes/new/navigation.php
+++ b/themes/new/navigation.php
@@ -1,13 +1,22 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit www.eodesign.com/cms for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
- ?>
+?>
<ul id="menu">
<li class="current_page_item"><a href="index.php">HOME</a></li>
<?php
@@ -19,4 +28,4 @@
echo '<li class="page_item"><a href="' . str_replace('&', '&amp;', $link['link']) . '">' . strtoupper($link['title']) . '</a></li>';
}
?>
- </ul><!--end dropmenu--> \ No newline at end of file
+ </ul><!--end dropmenu-->
diff --git a/themes/throwback/footer.php b/themes/throwback/footer.php
index 72ddb3a..42b481f 100644
--- a/themes/throwback/footer.php
+++ b/themes/throwback/footer.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
$phpversion = preg_replace('/[a-z-]/', '', phpversion());
$mtime = explode(' ', microtime());
diff --git a/themes/throwback/header.php b/themes/throwback/header.php
index 76dc2f9..a9b043b 100644
--- a/themes/throwback/header.php
+++ b/themes/throwback/header.php
@@ -1,7 +1,7 @@
<?php
/**
* Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
+ */
global $config;
ob_start();
@@ -37,4 +37,4 @@ $starttime = $starttime[1] + $starttime[0];
<link rel="stylesheet" type="text/css" href="<?php echo self::$primary_css; ?>" media="screen"/>
</head>
-<body> \ No newline at end of file
+<body>
diff --git a/themes/throwback/include/functions.php b/themes/throwback/include/functions.php
index afcd130..ead9d16 100644
--- a/themes/throwback/include/functions.php
+++ b/themes/throwback/include/functions.php
@@ -1,4 +1,22 @@
<?php
+/**
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
/* EVERY THEME SHOULD HAVE THIS FILE WITH THE FUNCTIONS OPENCONTENT() & CLOSECONTENT() */
@@ -35,4 +53,4 @@
CloseContent();
}
-?> \ No newline at end of file
+?>
diff --git a/themes/throwback/index.php b/themes/throwback/index.php
index bfcab58..90e6a6d 100644
--- a/themes/throwback/index.php
+++ b/themes/throwback/index.php
@@ -1,11 +1,20 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit [link] for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Begin try/catch block */
diff --git a/themes/throwback/navigation.php b/themes/throwback/navigation.php
index ac81b6b..03c0376 100644
--- a/themes/throwback/navigation.php
+++ b/themes/throwback/navigation.php
@@ -1,13 +1,22 @@
<?php
/**
- * Bayonet Conent Management System
- * Copyright (C) Joseph Hunkeler & Evan O'Connell
- *
- * Purpose of this software is to allow users to manage their website
- * with ease and without needing to have any coding knowledge in order
- * to maintain it. Visit www.eodesign.com/cms for any updates or feedback.
+ * Bayonet Content Management System
+ * Copyright (C) 2008-2011 Joseph Hunkeler & Evan O'Connell
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
- ?>
+?>
&nbsp;&nbsp;&nbsp;<a href="index.php">HOME</a>&nbsp;&nbsp;&nbsp;
<?php