diff options
70 files changed, 160 insertions, 353 deletions
| diff --git a/pages/quotes.php b/pages/quotes.php index d557ca1..b02875e 100755 --- a/pages/quotes.php +++ b/pages/quotes.php | |||
| @@ -27,6 +27,9 @@ include('includes/functions_quotes.php'); | |||
| 27 | $pageCategory = 'quotes'; | 27 | $pageCategory = 'quotes'; |
| 28 | $headtags = '<LINK REL="stylesheet" HREF="/theme/css/quotes.css" />'; | 28 | $headtags = '<LINK REL="stylesheet" HREF="/theme/css/quotes.css" />'; |
| 29 | 29 | ||
| 30 | $template = new FITemplate('quotes/header'); | ||
| 31 | $template->display(); | ||
| 32 | |||
| 30 | if (isset($_GET['id'])) | 33 | if (isset($_GET['id'])) |
| 31 | { | 34 | { |
| 32 | $quote_num = $_GET['id']; | 35 | $quote_num = $_GET['id']; |
| diff --git a/theme/css.php b/theme/css.php index fa0451a..352caaa 100755 --- a/theme/css.php +++ b/theme/css.php | |||
| @@ -28,8 +28,6 @@ include('../includes/specialdates.php'); | |||
| 28 | 28 | ||
| 29 | include("css/website.css"); | 29 | include("css/website.css"); |
| 30 | include("css/bubbles.css"); | 30 | include("css/bubbles.css"); |
| 31 | include('css/navigation.css'); | ||
| 32 | include('css/headers.php'); | ||
| 33 | 31 | ||
| 34 | if (sd_ifNoSpecialDay()) | 32 | if (sd_ifNoSpecialDay()) |
| 35 | { | 33 | { |
| diff --git a/theme/css/headers.php b/theme/css/headers.php deleted file mode 100644 index bb5a179..0000000 --- a/theme/css/headers.php +++ /dev/null | |||
| @@ -1,85 +0,0 @@ | |||
| 1 | <?php | ||
| 2 | /* | ||
| 3 | 444444444 | ||
| 4 | 4::::::::4 | ||
| 5 | 4:::::::::4 | ||
| 6 | 4::::44::::4 | ||
| 7 | 4::::4 4::::4 Four Island | ||
| 8 | 4::::4 4::::4 | ||
| 9 | 4::::4 4::::4 Written and maintained by Starla Insigna | ||
| 10 | 4::::444444::::444 | ||
| 11 | 4::::::::::::::::4 theme/css/headers.php | ||
| 12 | 4444444444:::::444 | ||
| 13 | 4::::4 Please do not use, reproduce or steal the | ||
| 14 | 4::::4 contents of this file without explicit | ||
| 15 | 4::::4 permission from Hatkirby. | ||
| 16 | 44::::::44 | ||
| 17 | 4::::::::4 | ||
| 18 | 4444444444 | ||
| 19 | */ | ||
| 20 | |||
| 21 | if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);} | ||
| 22 | |||
| 23 | require('headerproc.php'); | ||
| 24 | |||
| 25 | ?> | ||
| 26 | /* Four Island Header CSS */ | ||
| 27 | <?php | ||
| 28 | |||
| 29 | include_once('../includes/specialdates.php'); | ||
| 30 | |||
| 31 | if (sd_ifNoSpecialDay()) | ||
| 32 | { | ||
| 33 | $bgimgm = 'main'; | ||
| 34 | } elseif (sd_isSpecialDay('Four Island A')) | ||
| 35 | { | ||
| 36 | $bgimgm = 'islandYearly'; | ||
| 37 | } elseif (sd_isSpecialDay('Mothers Day')) | ||
| 38 | { | ||
| 39 | $bgimgm = 'mothers'; | ||
| 40 | } elseif (sd_isSpecialDay('Memorial Day')) | ||
| 41 | { | ||
| 42 | $bgimgm = 'memorial'; | ||
| 43 | } elseif (sd_isSpecialDay('Hatkirbys B-Day')) | ||
| 44 | { | ||
| 45 | $bgimgm = 'hatkirbybday'; | ||
| 46 | } else if (sd_isSpecialDay('CTNH')) | ||
| 47 | { | ||
| 48 | $bgimgm = 'ctnh'; | ||
| 49 | } else { | ||
| 50 | $bgimgm = 'main'; | ||
| 51 | } | ||
| 52 | |||
| 53 | if ($bgimgm == 'main') | ||
| 54 | { | ||
| 55 | //Check for page-based headers | ||
| 56 | ?> | ||
| 57 | /* Category-Based Headers */ | ||
| 58 | body.projects div#banner { | ||
| 59 | background-image: url("/theme/images/headers/projects.png"); | ||
| 60 | } | ||
| 61 | body.wiki div#banner { | ||
| 62 | background-image: url("/theme/images/headers/kfm.png"); | ||
| 63 | } | ||
| 64 | body.fourm div#banner { | ||
| 65 | background-image: url("/theme/images/headers/fourm.png"); | ||
| 66 | } | ||
| 67 | body.misc div#banner { | ||
| 68 | background-image: url("/theme/images/headers/random.png"); | ||
| 69 | } | ||
| 70 | body.webs div#banner { | ||
| 71 | background-image: url("/theme/images/headers/links.png"); | ||
| 72 | } | ||
| 73 | body.quotes div#banner { | ||
| 74 | background-image: url("/theme/images/headers/quotes.png"); | ||
| 75 | } | ||
| 76 | body.poll div#banner { | ||
| 77 | background-image: url("/theme/images/headers/potw.png"); | ||
| 78 | } | ||
| 79 | /* AID-Based Headers */ | ||
| 80 | <?php | ||
| 81 | } | ||
| 82 | ?> | ||
| 83 | div#banner { | ||
| 84 | background-image: url("/theme/images/headers/<?php echo($bgimgm); ?>.png"); /*850x129*/ | ||
| 85 | } | ||
| diff --git a/theme/css/navigation.css b/theme/css/navigation.css deleted file mode 100644 index 4d3156b..0000000 --- a/theme/css/navigation.css +++ /dev/null | |||
| @@ -1,173 +0,0 @@ | |||
| 1 | /* Four Island NavBar CSS */ | ||
| 2 | |||
| 3 | ul#bannernav { | ||
| 4 | list-style: none; | ||
| 5 | clear: both; | ||
| 6 | margin: 0px; | ||
| 7 | } | ||
| 8 | |||
| 9 | div#banner-nav { | ||
| 10 | height: 30px; | ||
| 11 | clear: both; | ||
| 12 | margin: 1px 30px 0 30px; | ||
| 13 | background: url("/theme/images/bg_navbar.gif") repeat-x 0 0; | ||
| 14 | } | ||
| 15 | |||
| 16 | ul#bannernav li { | ||
| 17 | float: left; | ||
| 18 | margin: 0; | ||
| 19 | padding: 0; | ||
| 20 | padding-right: 6px; | ||
| 21 | } | ||
| 22 | |||
| 23 | ul#bannernav li a { | ||
| 24 | text-decoration: none; | ||
| 25 | display: block; | ||
| 26 | width: 100; | ||
| 27 | height: 30; | ||
| 28 | } | ||
| 29 | |||
| 30 | ul#bannernav li a span { | ||
| 31 | visibility: hidden; | ||
| 32 | } | ||
| 33 | |||
| 34 | ul#bannernav li img { | ||
| 35 | display: none; | ||
| 36 | } | ||
| 37 | |||
| 38 | ul#bannernav li#bannernav-home a { | ||
| 39 | background-image: url("/theme/images/Home.gif"); | ||
| 40 | } | ||
| 41 | |||
| 42 | body.home ul#bannernav li#bannernav-home a, | ||
| 43 | ul#bannernav li#bannernav-home a:hover { | ||
| 44 | background-image: url("/theme/images/Home_ro.gif"); | ||
| 45 | } | ||
| 46 | |||
| 47 | ul#bannernav li#bannernav-projects a { | ||
| 48 | background-image: url("/theme/images/Projects.gif"); | ||
| 49 | } | ||
| 50 | |||
| 51 | body.projects ul#bannernav li#bannernav-projects a, | ||
| 52 | ul#bannernav li#bannernav-projects a:hover { | ||
| 53 | background-image: url("/theme/images/Projects_ro.gif"); | ||
| 54 | } | ||
| 55 | |||
| 56 | ul#bannernav li#bannernav-wiki a { | ||
| 57 | background-image: url("/theme/images/Wiki.gif"); | ||
| 58 | } | ||
| 59 | |||
| 60 | body.wiki ul#bannernav li#bannernav-wiki a, | ||
| 61 | ul#bannernav li#bannernav-wiki a:hover { | ||
| 62 | background-image: url("/theme/images/Wiki_ro.gif"); | ||
| 63 | } | ||
| 64 | |||
| 65 | ul#bannernav li#bannernav-fourm a { | ||
| 66 | background-image: url("/theme/images/Fourm.gif"); | ||
| 67 | } | ||
| 68 | |||
| 69 | body.fourm ul#bannernav li#bannernav-fourm a, | ||
| 70 | ul#bannernav li#bannernav-fourm a:hover { | ||
| 71 | background-image: url("/theme/images/Fourm_ro.gif"); | ||
| 72 | } | ||
| 73 | |||
| 74 | ul#bannernav li#bannernav-misc a { | ||
| 75 | background-image: url("/theme/images/Random.gif"); | ||
| 76 | } | ||
| 77 | |||
| 78 | body.misc ul#bannernav li#bannernav-misc a, | ||
| 79 | ul#bannernav li#bannernav-misc a:hover { | ||
| 80 | background-image: url("/theme/images/Random_ro.gif"); | ||
| 81 | } | ||
| 82 | |||
| 83 | ul#bannernav li#bannernav-webs a { | ||
| 84 | background-image: url("/theme/images/Links.gif"); | ||
| 85 | } | ||
| 86 | |||
| 87 | body.webs ul#bannernav li#bannernav-webs a, | ||
| 88 | ul#bannernav li#bannernav-webs a:hover { | ||
| 89 | background-image: url("/theme/images/Links_ro.gif"); | ||
| 90 | } | ||
| 91 | |||
| 92 | ul#bannernav li#bannernav-poll a { | ||
| 93 | background-image: url("/theme/images/Poll.gif"); | ||
| 94 | } | ||
| 95 | |||
| 96 | body.poll ul#bannernav li#bannernav-poll a, | ||
| 97 | ul#bannernav li#bannernav-poll a:hover { | ||
| 98 | background-image: url("/theme/images/Poll_ro.gif"); | ||
| 99 | } | ||
| 100 | |||
| 101 | ul#bannernav li#bannernav-quotes a { | ||
| 102 | background-image: url("/theme/images/Quotes.gif"); | ||
| 103 | } | ||
| 104 | |||
| 105 | body.quotes ul#bannernav li#bannernav-quotes a, | ||
| 106 | ul#bannernav li#bannernav-quotes a:hover { | ||
| 107 | background-image: url("/theme/images/Quotes_ro.gif"); | ||
| 108 | } | ||
| 109 | |||
| 110 | ul#bannernav li#bannernav-login a { | ||
| 111 | background-image: url("/theme/images/Login.gif"); | ||
| 112 | } | ||
| 113 | |||
| 114 | body.login ul#bannernav li#bannernav-login a, | ||
| 115 | ul#bannernav li#bannernav-login a:hover { | ||
| 116 | background-image: url("/theme/images/Login_ro.gif"); | ||
| 117 | } | ||
| 118 | |||
| 119 | ul#bannernav li#bannernav-logout a { | ||
| 120 | background-image: url("/theme/images/Logout.gif"); | ||
| 121 | } | ||
| 122 | |||
| 123 | ul#bannernav li#bannernav-logout a:hover { | ||
| 124 | background-image: url("/theme/images/Logout_ro.gif"); | ||
| 125 | } | ||
| 126 | |||
| 127 | ul#bannernav li#bannernav-panel a { | ||
| 128 | background-image: url("/theme/images/Panel.gif"); | ||
| 129 | } | ||
| 130 | |||
| 131 | body.panel ul#bannernav li#bannernav-panel a, | ||
| 132 | ul#bannernav li#bannernav-panel a:hover { | ||
| 133 | background-image: url("/theme/images/Panel_ro.gif"); | ||
| 134 | } | ||
| 135 | |||
| 136 | ul#bannernav li#bannernav-search { | ||
| 137 | display: block; | ||
| 138 | float: right; | ||
| 139 | width: 165px; | ||
| 140 | height: 30px; | ||
| 141 | margin: 0px; | ||
| 142 | background: url("/theme/images/bg_search.gif") 0 0 no-repeat; | ||
| 143 | } | ||
| 144 | |||
| 145 | ul#bannernav li#bannernav-search fieldset { | ||
| 146 | border: none; | ||
| 147 | padding-top: 6px; | ||
| 148 | border-width:0pt; | ||
| 149 | font-family:Verdana,Helvetica,Arial,sans-serif; | ||
| 150 | font-size:1.1em; | ||
| 151 | } | ||
| 152 | |||
| 153 | ul#bannernav li#bannernav-search input { | ||
| 154 | width: 125px; | ||
| 155 | height: 19px !important; | ||
| 156 | margin-left: 13px; | ||
| 157 | border: none !important; | ||
| 158 | background-color: transparent; | ||
| 159 | cursor:pointer; | ||
| 160 | font-family:Verdana,Helvetica,Arial,sans-serif; | ||
| 161 | font-weight:normal; | ||
| 162 | padding:0pt 3px; | ||
| 163 | vertical-align:middle; | ||
| 164 | line-height:1.3em; | ||
| 165 | color:#536482; | ||
| 166 | margin-top: -20px; | ||
| 167 | } | ||
| 168 | |||
| 169 | body.fourm ul#bannernav li#bannernav-search input { | ||
| 170 | margin-top: 0px; | ||
| 171 | font-size: 1.1em !important; | ||
| 172 | margin-left: 28px; | ||
| 173 | } | ||
| diff --git a/theme/css/night.css b/theme/css/night.css index e97ac71..614cc79 100644 --- a/theme/css/night.css +++ b/theme/css/night.css | |||
| @@ -2,3 +2,15 @@ body { | |||
| 2 | background-color: black; | 2 | background-color: black; |
| 3 | background-image: url(/theme/images/backgrounds/island6night.PNG); | 3 | background-image: url(/theme/images/backgrounds/island6night.PNG); |
| 4 | } | 4 | } |
| 5 | |||
| 6 | body div#banner { | ||
| 7 | background-image: url("/theme/images/fourisland_header_night.png") !important; | ||
| 8 | } | ||
| 9 | |||
| 10 | body div#top-fade { | ||
| 11 | background-image: url(/theme/images/top_fade_night.png) !important; | ||
| 12 | } | ||
| 13 | |||
| 14 | body.home div.bubble cite { | ||
| 15 | color: yellow; | ||
| 16 | } | ||
| diff --git a/theme/css/website.css b/theme/css/website.css index 823e80e..de2fecd 100755 --- a/theme/css/website.css +++ b/theme/css/website.css | |||
| @@ -108,18 +108,12 @@ pre { | |||
| 108 | 108 | ||
| 109 | div#banner, div#fi-banner { | 109 | div#banner, div#fi-banner { |
| 110 | background-repeat: no-repeat; | 110 | background-repeat: no-repeat; |
| 111 | width: 850px; | 111 | width: 900px; /*728*/ |
| 112 | height: 129px; | 112 | height: 200px; |
| 113 | float: left; | 113 | float: left; |
| 114 | margin-top: 21px; | 114 | margin-top: 21px; |
| 115 | } | 115 | } |
| 116 | 116 | ||
| 117 | #page-header { | ||
| 118 | background: url("/theme/images/bg_header.gif") repeat-x 0 0; | ||
| 119 | height: 150px; | ||
| 120 | clear: both; | ||
| 121 | } | ||
| 122 | |||
| 123 | div#banner { | 117 | div#banner { |
| 124 | background-image: url("/theme/images/fourisland_header.png"); | 118 | background-image: url("/theme/images/fourisland_header.png"); |
| 125 | } | 119 | } |
| @@ -130,8 +124,8 @@ body div#banner h1, body div#fi-banner h1 { | |||
| 130 | 124 | ||
| 131 | body div#banner h1 a, body div#fi-banner h1 a { | 125 | body div#banner h1 a, body div#fi-banner h1 a { |
| 132 | display: block; | 126 | display: block; |
| 133 | width: 850px; | 127 | width: 900px; |
| 134 | height: 129px; | 128 | height: 200px; |
| 135 | text-indent: -5000px; | 129 | text-indent: -5000px; |
| 136 | text-decoration: none; | 130 | text-decoration: none; |
| 137 | margin: 0; | 131 | margin: 0; |
| @@ -147,27 +141,10 @@ div#bannernav { | |||
| 147 | text-align: center; | 141 | text-align: center; |
| 148 | } | 142 | } |
| 149 | 143 | ||
| 150 | span.side-left, span.side-right { | ||
| 151 | display: block; | ||
| 152 | width: 20px; | ||
| 153 | height: 150px; | ||
| 154 | background: url("/theme/images/sides_top.gif") no-repeat; | ||
| 155 | } | ||
| 156 | |||
| 157 | span.side-left { | ||
| 158 | float: left; | ||
| 159 | margin-right: 10px; | ||
| 160 | } | ||
| 161 | |||
| 162 | span.side-right { | ||
| 163 | background-position: 100% 0; | ||
| 164 | float: right; | ||
| 165 | } | ||
| 166 | |||
| 167 | /* Sidebar */ | 144 | /* Sidebar */ |
| 168 | 145 | ||
| 169 | div#rightbar { | 146 | div#rightbar { |
| 170 | float: right; | 147 | float: left; |
| 171 | width: 250px; /*210*/ | 148 | width: 250px; /*210*/ |
| 172 | padding: 0 10; | 149 | padding: 0 10; |
| 173 | } | 150 | } |
| @@ -216,7 +193,6 @@ div#sidebar li img { | |||
| 216 | /* Layout */ | 193 | /* Layout */ |
| 217 | 194 | ||
| 218 | #wrap { | 195 | #wrap { |
| 219 | background: #FFFFFF url("/theme/images/bg_body.gif") repeat-y 0 0; | ||
| 220 | width: 910px; | 196 | width: 910px; |
| 221 | margin: 10px auto; | 197 | margin: 10px auto; |
| 222 | text-align: left; | 198 | text-align: left; |
| @@ -224,6 +200,16 @@ div#sidebar li img { | |||
| 224 | margin-top: 25px; | 200 | margin-top: 25px; |
| 225 | } | 201 | } |
| 226 | 202 | ||
| 203 | div#top-fade { | ||
| 204 | position: absolute; | ||
| 205 | top: 0; | ||
| 206 | left: 0; | ||
| 207 | width: 100%; | ||
| 208 | background-image: url(/theme/images/top_fade.png); | ||
| 209 | height: 400px; | ||
| 210 | z-index: 0; | ||
| 211 | } | ||
| 212 | |||
| 227 | #page-body { | 213 | #page-body { |
| 228 | margin: 0 30px; | 214 | margin: 0 30px; |
| 229 | clear: both; | 215 | clear: both; |
| @@ -245,7 +231,7 @@ body.fourm #page-body { | |||
| 245 | /* Content */ | 231 | /* Content */ |
| 246 | 232 | ||
| 247 | div#content { | 233 | div#content { |
| 248 | float: left; | 234 | float: right; |
| 249 | width: 555px; /*465*/ /*555*/ | 235 | width: 555px; /*465*/ /*555*/ |
| 250 | } | 236 | } |
| 251 | 237 | ||
| @@ -327,22 +313,6 @@ div#hatbar.quotes-options ul { | |||
| 327 | list-style: none; | 313 | list-style: none; |
| 328 | } | 314 | } |
| 329 | 315 | ||
| 330 | div#stripe { | ||
| 331 | position: fixed; | ||
| 332 | top: 0; | ||
| 333 | left: 0; | ||
| 334 | width: 100%; | ||
| 335 | background-color: #FBEC5D; | ||
| 336 | height: 20px; | ||
| 337 | z-index: 99; | ||
| 338 | padding-top: 5px; | ||
| 339 | text-align: center; | ||
| 340 | } | ||
| 341 | |||
| 342 | * > html div#stripe { | ||
| 343 | position: absolute; | ||
| 344 | } | ||
| 345 | |||
| 346 | /* Tables */ | 316 | /* Tables */ |
| 347 | 317 | ||
| 348 | table.webmail { | 318 | table.webmail { |
| diff --git a/theme/footer.tpl b/theme/footer.tpl index 422c733..ed4e94d 100755 --- a/theme/footer.tpl +++ b/theme/footer.tpl | |||
| @@ -22,44 +22,72 @@ | |||
| 22 | </DIV> | 22 | </DIV> |
| 23 | </DIV> | 23 | </DIV> |
| 24 | 24 | ||
| 25 | <!--BEGIN USEHATNAV--> | ||
| 26 | <DIV class="sidebar"> | 25 | <DIV class="sidebar"> |
| 27 | <DIV CLASS="bubble"> | 26 | <DIV CLASS="bubble"> |
| 28 | <DIV CLASS="rounded"> | 27 | <DIV CLASS="rounded"> |
| 29 | <BLOCKQUOTE> | 28 | <BLOCKQUOTE> |
| 30 | <DIV ID="hatnav"><H3>Hatnav</H3><P> | 29 | <DIV ID="hatbar"><H3>HatNav</H3><P> |
| 31 | <UL> | 30 | <UL> |
| 32 | <!--BEGIN HATNAV--> | 31 | <LI> |
| 33 | <LI STYLE="margin-left: 10"><A ID="<!--HATNAV.AID-->" HREF="<!--HATNAV.HREF-->"><IMG SRC="<!--HATNAV.IMAGE-->"><!--HATNAV.TEXT--><!--HATNAV.NEW--></A></LI> | 32 | <IMG SRC="/theme/images/icons/newspaper.png" /> |
| 34 | <!--END HATNAV--> | 33 | <A HREF="http://fourisland.com/">Blog</A> |
| 34 | </LI> | ||
| 35 | |||
| 36 | <LI> | ||
| 37 | <IMG SRC="/theme/images/projects.png" /> | ||
| 38 | <A HREF="http://projects.fourisland.com/">Projects</A> | ||
| 39 | </LI> | ||
| 40 | |||
| 41 | <LI> | ||
| 42 | <IMG SRC="/theme/images/icons/comment.png" /> | ||
| 43 | <A HREF="http://fourisland.com/fourm/">The Fourm</A> | ||
| 44 | </LI> | ||
| 45 | |||
| 46 | <LI> | ||
| 47 | <IMG SRC="/theme/images/icons/page_edit.png" /> | ||
| 48 | <A HREF="http://fourisland.com/wiki/">Fouripedia</A> | ||
| 49 | </LI> | ||
| 50 | |||
| 51 | <LI> | ||
| 52 | <IMG SRC="/theme/images/icons/overlays.png" /> | ||
| 53 | <A HREF="http://fourisland.com/poll/">Polls</A> | ||
| 54 | </LI> | ||
| 55 | |||
| 56 | <LI> | ||
| 57 | <IMG SRC="/theme/images/icons/16-file-page.png" /> | ||
| 58 | <A HREF="http://fourisland.com/quotes/">Quotes</A> | ||
| 59 | </LI> | ||
| 60 | |||
| 61 | <LI> | ||
| 62 | <IMG SRC="/theme/images/icons/door_<!--LOGDATA-->.png" /> | ||
| 63 | <A HREF="http://fourisland.com/log<!--LOGDATA-->.php?redirect=<!--REDIRPAGE-->">Log<!--LOGDATA--></A> | ||
| 64 | </LI> | ||
| 35 | </UL> | 65 | </UL> |
| 36 | </P></DIV> | 66 | </DIV> |
| 37 | </BLOCKQUOTE> | 67 | </BLOCKQUOTE> |
| 38 | </DIV> | 68 | </DIV> |
| 39 | </DIV> | 69 | </DIV> |
| 40 | </DIV> | 70 | </DIV> |
| 41 | <!--END USEHATNAV--> | 71 | |
| 42 | 72 | <DIV class="sidebar"> | |
| 43 | <DIV CLASS="sidebar"> | ||
| 44 | <DIV CLASS="bubble"> | 73 | <DIV CLASS="bubble"> |
| 45 | <DIV CLASS="rounded"> | 74 | <DIV CLASS="rounded"> |
| 46 | <BLOCKQUOTE> | 75 | <BLOCKQUOTE> |
| 47 | <DIV ID="hatbar"><H3>Poll of the Week</H3><P> | 76 | <DIV ID="hatbar"><H3>Poll of the Week</H3><P> |
| 48 | <!--INCLUDE polloftheweek--> | 77 | <P> |
| 49 | </P></DIV> | 78 | <!--INCLUDE polloftheweek--> |
| 79 | </P> | ||
| 80 | </DIV> | ||
| 50 | </BLOCKQUOTE> | 81 | </BLOCKQUOTE> |
| 51 | </DIV> | 82 | </DIV> |
| 52 | </DIV> | 83 | </DIV> |
| 53 | </DIV> | 84 | </DIV> |
| 54 | 85 | ||
| 55 | <!--EXTRASIDEBARS--> | ||
| 56 | |||
| 57 | <DIV class="sidebar"> | 86 | <DIV class="sidebar"> |
| 58 | <DIV CLASS="bubble"> | 87 | <DIV CLASS="bubble"> |
| 59 | <DIV CLASS="rounded"> | 88 | <DIV CLASS="rounded"> |
| 60 | <BLOCKQUOTE> | 89 | <BLOCKQUOTE> |
| 61 | <DIV ID="hatbar"><H3>Hatbar</H3><P> | 90 | <DIV ID="hatbar"><H3>Hatbar</H3><P> |
| 62 | Confused? Email the webmaster at hatk<a href="http://mailhide.recaptcha.net/d?k=01gkW_nSHD3Qbf7dcAwJVdsg==&c=M-Dz6vqhsLdR6tNVOO5f7c6jZUsKP1mUNWfmLFkJqak=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01gkW_nSHD3Qbf7dcAwJVdsg==&c=M-Dz6vqhsLdR6tNVOO5f7c6jZUsKP1mUNWfmLFkJqak=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@fourisland.com</SMALL> | ||
| 63 | <P> | 91 | <P> |
| 64 | <SPAN ID="hitcounter"> | 92 | <SPAN ID="hitcounter"> |
| 65 | Hits: <!--HITS--><BR> | 93 | Hits: <!--HITS--><BR> |
| @@ -95,6 +123,38 @@ | |||
| 95 | <DIV CLASS="bubble"> | 123 | <DIV CLASS="bubble"> |
| 96 | <DIV CLASS="rounded"> | 124 | <DIV CLASS="rounded"> |
| 97 | <BLOCKQUOTE> | 125 | <BLOCKQUOTE> |
| 126 | <DIV ID="hatbar"><H3>Affiliates</H3><P> | ||
| 127 | <UL> | ||
| 128 | <LI> | ||
| 129 | <IMG SRC="/theme/images/icons/tag_blue.png" /> | ||
| 130 | <A HREF="http://ssite.fourisland.com/">The S Site</A> | ||
| 131 | </LI> | ||
| 132 | |||
| 133 | <LI> | ||
| 134 | <IMG SRC="/theme/images/icons/tag_green.png" /> | ||
| 135 | <A HREF="http://nablecak.fourisland.com/">Wikipinia</A> | ||
| 136 | </LI> | ||
| 137 | |||
| 138 | <LI> | ||
| 139 | <IMG SRC="/theme/images/icons/tag_orange.png" /> | ||
| 140 | <A HREF="http://gryph.fourisland.com/">Color Pencils</A> | ||
| 141 | </LI> | ||
| 142 | |||
| 143 | <LI> | ||
| 144 | <IMG SRC="/theme/images/icons/tag_pink.png" /> | ||
| 145 | <A HREF="http://timbo94.fourisland.com/">Dream Weaver</A> | ||
| 146 | </LI> | ||
| 147 | </UL> | ||
| 148 | </DIV> | ||
| 149 | </BLOCKQUOTE> | ||
| 150 | </DIV> | ||
| 151 | </DIV> | ||
| 152 | </DIV> | ||
| 153 | |||
| 154 | <DIV class="sidebar"> | ||
| 155 | <DIV CLASS="bubble"> | ||
| 156 | <DIV CLASS="rounded"> | ||
| 157 | <BLOCKQUOTE> | ||
| 98 | <DIV ID="hatbar"> | 158 | <DIV ID="hatbar"> |
| 99 | <H3>Popular Posts</H3> | 159 | <H3>Popular Posts</H3> |
| 100 | 160 | ||
| @@ -121,7 +181,7 @@ | |||
| 121 | <P> | 181 | <P> |
| 122 | <UL> | 182 | <UL> |
| 123 | <!--BEGIN COMMENTS--> | 183 | <!--BEGIN COMMENTS--> |
| 124 | <LI STYLE="font-size: 0.9em"><!--COMMENTS.AUTHOR--> on <A HREF="/<!--COMMENTS.AREA-->/<!--COMMENTS.CODED--><!--COMMENTS.ENDING-->"><!--COMMENTS.TITLE--></A></LI> | 184 | <LI STYLE="font-size: 0.9em"><!--COMMENTS.AUTHOR--> on <A HREF="/<!--COMMENTS.AREA-->/<!--COMMENTS.CODED--><!--COMMENTS.ENDING-->#comment-<!--COMMENTS.ID-->"><!--COMMENTS.TITLE--></A></LI> |
| 125 | <!--END COMMENTS--> | 185 | <!--END COMMENTS--> |
| 126 | </UL> | 186 | </UL> |
| 127 | </P> | 187 | </P> |
| diff --git a/theme/header.tpl b/theme/header.tpl index 1619ebf..c087f67 100755 --- a/theme/header.tpl +++ b/theme/header.tpl | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->" /> | 5 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->" /> |
| 6 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/thickbox.css" /> | 6 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/thickbox.css" /> |
| 7 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/print.css" MEDIA="print" /> | ||
| 7 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> | 8 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> |
| 8 | <META HTTP-EQUIV="Content-Language" CONTENT="en" /> | 9 | <META HTTP-EQUIV="Content-Language" CONTENT="en" /> |
| 9 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="http://feeds.feedburner.com/FourIsland?format=xml" TITLE="Four Island" /> | 10 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="http://feeds.feedburner.com/FourIsland?format=xml" TITLE="Four Island" /> |
| @@ -12,7 +13,6 @@ | |||
| 12 | <LINK REL="pingback" HREF="http://fourisland.com/xmlrpc.php" /> | 13 | <LINK REL="pingback" HREF="http://fourisland.com/xmlrpc.php" /> |
| 13 | <SCRIPT SRC="/theme/js/jquery-1.2.6.min.js" TYPE="text/javascript"></SCRIPT> | 14 | <SCRIPT SRC="/theme/js/jquery-1.2.6.min.js" TYPE="text/javascript"></SCRIPT> |
| 14 | <SCRIPT SRC="/theme/js/jquery.ie6blocker.js" TYPE="text/javascript"></SCRIPT> | 15 | <SCRIPT SRC="/theme/js/jquery.ie6blocker.js" TYPE="text/javascript"></SCRIPT> |
| 15 | <SCRIPT SRC="/theme/js/message.js" TYPE="text/javascript"></SCRIPT> | ||
| 16 | <SCRIPT SRC="/theme/js/rounded_corners.inc.js" TYPE="text/javascript"></SCRIPT> | 16 | <SCRIPT SRC="/theme/js/rounded_corners.inc.js" TYPE="text/javascript"></SCRIPT> |
| 17 | <SCRIPT SRC="/theme/js/round_bubbles.js" TYPE="text/javascript"></SCRIPT> | 17 | <SCRIPT SRC="/theme/js/round_bubbles.js" TYPE="text/javascript"></SCRIPT> |
| 18 | <SCRIPT SRC="/theme/js/thickbox.js" TYPE="text/javascript"></SCRIPT> | 18 | <SCRIPT SRC="/theme/js/thickbox.js" TYPE="text/javascript"></SCRIPT> |
| @@ -27,38 +27,18 @@ | |||
| 27 | </HEAD> | 27 | </HEAD> |
| 28 | 28 | ||
| 29 | <BODY ID="<!--BODYID-->" CLASS="<!--CATEGORY--> <!--AID--> <!--CATEGORY-->-<!--AID-->"<!--BODYTAGS-->> | 29 | <BODY ID="<!--BODYID-->" CLASS="<!--CATEGORY--> <!--AID--> <!--CATEGORY-->-<!--AID-->"<!--BODYTAGS-->> |
| 30 | <DIV ID="stripe"> | 30 | <DIV ID="top-fade"></DIV> |
| 31 | You can get notifications on new Four Island posts either via | ||
| 32 | <A HREF="http://feeds.feedburner.com/FourIsland">RSS</A> | ||
| 33 | or | ||
| 34 | <A HREF="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1464430">Email</A> | ||
| 35 | </DIV> | ||
| 36 | 31 | ||
| 37 | <DIV ID="wrap"> | 32 | <DIV ID="wrap"> |
| 38 | <DIV ID="page-header"> | 33 | <DIV ID="page-header"> |
| 39 | <SPAN CLASS="side-left"></SPAN> | ||
| 40 | <DIV ID="banner" STYLE="position: relative;"> | 34 | <DIV ID="banner" STYLE="position: relative;"> |
| 41 | <H1 ID="logo-banner"><A HREF="/" TITLE="Four Island">Four Island</A></H1> | 35 | <H1 ID="logo-banner"> |
| 42 | </DIV> | 36 | <A HREF="/" TITLE="Four Island">Four Island</A> |
| 43 | <SPAN CLASS="side-right"></SPAN> | 37 | </H1> |
| 44 | </DIV> | 38 | </DIV> |
| 45 | |||
| 46 | <DIV ID="banner-nav"> | ||
| 47 | <UL ID="bannernav"> | ||
| 48 | <LI id="bannernav-home"><A HREF="/" REL="home"><B><SPAN>Home</SPAN></B></A></LI> | ||
| 49 | <LI id="bannernav-projects"><A HREF="http://projects.fourisland.com"><B><SPAN>Projects</SPAN></B></A></LI> | ||
| 50 | <LI id="bannernav-wiki"><A HREF="/wiki/"><B><SPAN>Wiki</SPAN></B></A></LI> | ||
| 51 | <LI id="bannernav-fourm"><A HREF="/fourm/"><B><SPAN>Fourm</SPAN></B></A></LI> | ||
| 52 | <LI id="bannernav-poll"><A HREF="/poll/"><B><SPAN>Poll</SPAN></B></A></LI> | ||
| 53 | <LI id="bannernav-quotes"><A HREF="/quotes/"><B><SPAN>Quotes</SPAN></B></A></LI> | ||
| 54 | <LI id="bannernav-<!--LOWERLOGDATA-->"><A HREF="/<!--LOWERLOGDATA-->.php?redirect=<!--REDIRPAGE-->"><B><SPAN><!--LOGDATA--></SPAN></B></A></LI> | ||
| 55 | <!--BEGIN PANEL--> | ||
| 56 | <LI id="bannernav-panel"><A HREF="/admin/"><B><SPAN>Panel</SPAN></B></A></LI> | ||
| 57 | <!--END PANEL--> | ||
| 58 | </UL> | ||
| 59 | </DIV> | 39 | </DIV> |
| 60 | 40 | ||
| 61 | <DIV CLASS="push"></DIV> | 41 | <DIV CLASS="push"></DIV> |
| 62 | 42 | ||
| 63 | <DIV id="page-body"> | 43 | <DIV id="page-body"> |
| 64 | <DIV id="content"><!-- Begin content --> | 44 | <DIV id="content"> |
| diff --git a/theme/images/Fourm.gif b/theme/images/Fourm.gif deleted file mode 100755 index 1365fd6..0000000 --- a/theme/images/Fourm.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Fourm_ro.gif b/theme/images/Fourm_ro.gif deleted file mode 100755 index 8a1cad6..0000000 --- a/theme/images/Fourm_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Home.gif b/theme/images/Home.gif deleted file mode 100755 index e3e523d..0000000 --- a/theme/images/Home.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Home_ro.gif b/theme/images/Home_ro.gif deleted file mode 100755 index b409d75..0000000 --- a/theme/images/Home_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Links.gif b/theme/images/Links.gif deleted file mode 100755 index a223b3e..0000000 --- a/theme/images/Links.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Links_ro.gif b/theme/images/Links_ro.gif deleted file mode 100755 index d540220..0000000 --- a/theme/images/Links_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Login.gif b/theme/images/Login.gif deleted file mode 100755 index 3573589..0000000 --- a/theme/images/Login.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Login_ro.gif b/theme/images/Login_ro.gif deleted file mode 100755 index 404f305..0000000 --- a/theme/images/Login_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Logout.gif b/theme/images/Logout.gif deleted file mode 100755 index 12696fe..0000000 --- a/theme/images/Logout.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Logout_ro.gif b/theme/images/Logout_ro.gif deleted file mode 100755 index ff103a2..0000000 --- a/theme/images/Logout_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Panel.gif b/theme/images/Panel.gif deleted file mode 100755 index 42075dc..0000000 --- a/theme/images/Panel.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Panel_ro.gif b/theme/images/Panel_ro.gif deleted file mode 100755 index e64c5ad..0000000 --- a/theme/images/Panel_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Poll.gif b/theme/images/Poll.gif deleted file mode 100755 index 08815d2..0000000 --- a/theme/images/Poll.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Poll_ro.gif b/theme/images/Poll_ro.gif deleted file mode 100755 index 6a4549f..0000000 --- a/theme/images/Poll_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Projects.gif b/theme/images/Projects.gif deleted file mode 100755 index bf0cfc7..0000000 --- a/theme/images/Projects.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Projects_ro.gif b/theme/images/Projects_ro.gif deleted file mode 100755 index 718ab03..0000000 --- a/theme/images/Projects_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Quotes.gif b/theme/images/Quotes.gif deleted file mode 100755 index 8bf0289..0000000 --- a/theme/images/Quotes.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Quotes_ro.gif b/theme/images/Quotes_ro.gif deleted file mode 100755 index f15831c..0000000 --- a/theme/images/Quotes_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Random.gif b/theme/images/Random.gif deleted file mode 100755 index 94cb4be..0000000 --- a/theme/images/Random.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Random_ro.gif b/theme/images/Random_ro.gif deleted file mode 100755 index 4e62f24..0000000 --- a/theme/images/Random_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Wiki.gif b/theme/images/Wiki.gif deleted file mode 100755 index e4a0cc7..0000000 --- a/theme/images/Wiki.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/Wiki_ro.gif b/theme/images/Wiki_ro.gif deleted file mode 100755 index b8d9438..0000000 --- a/theme/images/Wiki_ro.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/backgrounds/island.PNG b/theme/images/backgrounds/island.PNG deleted file mode 100755 index 440f8e2..0000000 --- a/theme/images/backgrounds/island.PNG +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/backgrounds/island2.PNG b/theme/images/backgrounds/island2.PNG deleted file mode 100755 index 7127a0f..0000000 --- a/theme/images/backgrounds/island2.PNG +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/backgrounds/island3.PNG b/theme/images/backgrounds/island3.PNG deleted file mode 100755 index bf74ab9..0000000 --- a/theme/images/backgrounds/island3.PNG +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/backgrounds/island4.PNG b/theme/images/backgrounds/island4.PNG deleted file mode 100755 index 3b31e79..0000000 --- a/theme/images/backgrounds/island4.PNG +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/backgrounds/island5.PNG b/theme/images/backgrounds/island5.PNG deleted file mode 100755 index 081a51c..0000000 --- a/theme/images/backgrounds/island5.PNG +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/bg_body_short.gif b/theme/images/bg_body_short.gif deleted file mode 100755 index b396204..0000000 --- a/theme/images/bg_body_short.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/bg_footer.gif b/theme/images/bg_footer.gif deleted file mode 100755 index ff3f511..0000000 --- a/theme/images/bg_footer.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/bg_header.gif b/theme/images/bg_header.gif deleted file mode 100755 index 46c22e8..0000000 --- a/theme/images/bg_header.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/bg_navbar.gif b/theme/images/bg_navbar.gif deleted file mode 100755 index d96c6ea..0000000 --- a/theme/images/bg_navbar.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/bg_search.gif b/theme/images/bg_search.gif deleted file mode 100755 index 79e040e..0000000 --- a/theme/images/bg_search.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/corners_bottom.gif b/theme/images/corners_bottom.gif deleted file mode 100755 index bea794f..0000000 --- a/theme/images/corners_bottom.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/corners_left.png b/theme/images/corners_left.png deleted file mode 100755 index 256bde3..0000000 --- a/theme/images/corners_left.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/corners_right.png b/theme/images/corners_right.png deleted file mode 100755 index df41823..0000000 --- a/theme/images/corners_right.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/fourisland_header.png b/theme/images/fourisland_header.png new file mode 100644 index 0000000..becd0b1 --- /dev/null +++ b/theme/images/fourisland_header.png | |||
| Binary files differ | |||
| diff --git a/theme/images/fourisland_header_night.png b/theme/images/fourisland_header_night.png new file mode 100644 index 0000000..25502a0 --- /dev/null +++ b/theme/images/fourisland_header_night.png | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/ctnh.png b/theme/images/headers/ctnh.png deleted file mode 100755 index b9542fc..0000000 --- a/theme/images/headers/ctnh.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/fourm.png b/theme/images/headers/fourm.png deleted file mode 100755 index e7bebde..0000000 --- a/theme/images/headers/fourm.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/hatkirbybday.png b/theme/images/headers/hatkirbybday.png deleted file mode 100755 index ba7bff0..0000000 --- a/theme/images/headers/hatkirbybday.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/islandYearly.png b/theme/images/headers/islandYearly.png deleted file mode 100755 index 099d963..0000000 --- a/theme/images/headers/islandYearly.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/kfm.png b/theme/images/headers/kfm.png deleted file mode 100755 index cc568ec..0000000 --- a/theme/images/headers/kfm.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/links.png b/theme/images/headers/links.png deleted file mode 100755 index b24ded0..0000000 --- a/theme/images/headers/links.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/main.png b/theme/images/headers/main.png deleted file mode 100755 index 009d3ac..0000000 --- a/theme/images/headers/main.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/main.xcf b/theme/images/headers/main.xcf deleted file mode 100755 index fd37ee4..0000000 --- a/theme/images/headers/main.xcf +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/memorial.png b/theme/images/headers/memorial.png deleted file mode 100755 index b68b97d..0000000 --- a/theme/images/headers/memorial.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/mothers.png b/theme/images/headers/mothers.png deleted file mode 100755 index e656d7d..0000000 --- a/theme/images/headers/mothers.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/potw.png b/theme/images/headers/potw.png deleted file mode 100755 index 9ce3174..0000000 --- a/theme/images/headers/potw.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/projects.png b/theme/images/headers/projects.png deleted file mode 100755 index d59f47a..0000000 --- a/theme/images/headers/projects.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/projects.xcf b/theme/images/headers/projects.xcf deleted file mode 100755 index f1950ad..0000000 --- a/theme/images/headers/projects.xcf +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/quotes.png b/theme/images/headers/quotes.png deleted file mode 100755 index 9fb966e..0000000 --- a/theme/images/headers/quotes.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/random.png b/theme/images/headers/random.png deleted file mode 100755 index e7db228..0000000 --- a/theme/images/headers/random.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/headers/short.png b/theme/images/headers/short.png deleted file mode 100755 index 4d4d267..0000000 --- a/theme/images/headers/short.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/sides_top.gif b/theme/images/sides_top.gif deleted file mode 100755 index a84383a..0000000 --- a/theme/images/sides_top.gif +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/tabBG.png b/theme/images/tabBG.png deleted file mode 100755 index 6c04d14..0000000 --- a/theme/images/tabBG.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/tabBG2.png b/theme/images/tabBG2.png deleted file mode 100755 index 15821a9..0000000 --- a/theme/images/tabBG2.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/tabSe.png b/theme/images/tabSe.png deleted file mode 100755 index e3955fe..0000000 --- a/theme/images/tabSe.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/tabUn.png b/theme/images/tabUn.png deleted file mode 100755 index 7ba116d..0000000 --- a/theme/images/tabUn.png +++ /dev/null | |||
| Binary files differ | |||
| diff --git a/theme/images/top_fade.png b/theme/images/top_fade.png new file mode 100644 index 0000000..5f24673 --- /dev/null +++ b/theme/images/top_fade.png | |||
| Binary files differ | |||
| diff --git a/theme/images/top_fade_night.png b/theme/images/top_fade_night.png new file mode 100644 index 0000000..90f27f6 --- /dev/null +++ b/theme/images/top_fade_night.png | |||
| Binary files differ | |||
| diff --git a/theme/js/message.js b/theme/js/message.js deleted file mode 100755 index 9de4bae..0000000 --- a/theme/js/message.js +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | $(document).ready(function() { | ||
| 2 | $("div#stripe").click(function() { | ||
| 3 | $("div#stripe").slideUp(); | ||
| 4 | }); | ||
| 5 | }); | ||
| diff --git a/theme/quotes/header.tpl b/theme/quotes/header.tpl new file mode 100644 index 0000000..620a4d0 --- /dev/null +++ b/theme/quotes/header.tpl | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | <DIV CLASS="sidebar" STYLE="margin: auto"> | ||
| 2 | <DIV CLASS="bubble"> | ||
| 3 | <DIV CLASS="rounded"> | ||
| 4 | <BLOCKQUOTE> | ||
| 5 | <DIV ID="hatbar" CLASS="quotes-options"> | ||
| 6 | <H3>Quote Options</H3> | ||
| 7 | <UL> | ||
| 8 | <LI> | ||
| 9 | <IMG SRC="/theme/images/icons/16-star-hot.png" /> | ||
| 10 | <A HREF="/quotes/latest.php">Latest</A> | ||
| 11 | </LI> | ||
| 12 | |||
| 13 | <LI> | ||
| 14 | <IMG SRC="/theme/images/icons/medal_gold_1.png" /> | ||
| 15 | <A HREF="/quotes/top.php">Best</A> | ||
| 16 | </LI> | ||
| 17 | |||
| 18 | <LI> | ||
| 19 | <IMG SRC="/theme/images/icons/16-message-warn.png" /> | ||
| 20 | <A HREF="/quotes/bottom.php">Worst</A> | ||
| 21 | </LI> | ||
| 22 | |||
| 23 | <LI> | ||
| 24 | <IMG SRC="/theme/images/icons/16-file-archive.png" /> | ||
| 25 | <A HREF="/quotes/browse.php">Browse All</A> | ||
| 26 | </LI> | ||
| 27 | |||
| 28 | <LI> | ||
| 29 | <IMG SRC="/theme/images/icons/16-clock.png" /> | ||
| 30 | <A HREF="/quotes/random.php">Random</A> | ||
| 31 | </LI> | ||
| 32 | |||
| 33 | <LI> | ||
| 34 | <IMG SRC="/theme/images/icons/16-em-pencil.png" /> | ||
| 35 | <A HREF="/quotes/add.php">Add</A> | ||
| 36 | </LI> | ||
| 37 | |||
| 38 | <LI> | ||
| 39 | <IMG SRC="/theme/images/icons/book_open.png" /> | ||
| 40 | <A HREF="/quotes/search.php">Search</A> | ||
| 41 | </LI> | ||
| 42 | </UL> | ||
| 43 | </DIV> | ||
| 44 | </BLOCKQUOTE> | ||
| 45 | </DIV> | ||
| 46 | </DIV> | ||
| 47 | </DIV> | ||
