diff options
| -rwxr-xr-x | pages/blog.php | 2 | ||||
| -rwxr-xr-x | pages/quotes.php | 14 | ||||
| -rwxr-xr-x | theme/header.tpl | 44 | ||||
| -rwxr-xr-x | theme/layouts/4.5/layout.tpl | 6 | ||||
| -rwxr-xr-x | theme/layouts/6.2/layout.tpl | 20 | ||||
| -rwxr-xr-x | theme/layouts/7/layout.tpl | 22 | ||||
| -rwxr-xr-x | theme/layouts/7/style.css | 4 |
7 files changed, 56 insertions, 56 deletions
| diff --git a/pages/blog.php b/pages/blog.php index 1024ebb..af5ddbf 100755 --- a/pages/blog.php +++ b/pages/blog.php | |||
| @@ -26,7 +26,7 @@ $pageCategory = 'blog'; | |||
| 26 | $pageAID = 'archive'; | 26 | $pageAID = 'archive'; |
| 27 | 27 | ||
| 28 | $hatNav = array( array( 'title' => 'Archive', | 28 | $hatNav = array( array( 'title' => 'Archive', |
| 29 | 'url' => 'http://fourisland.com/blog/', | 29 | 'url' => '/blog/', |
| 30 | 'icon' => '16-file-archive')); | 30 | 'icon' => '16-file-archive')); |
| 31 | 31 | ||
| 32 | $template = new FITemplate('post'); | 32 | $template = new FITemplate('post'); |
| diff --git a/pages/quotes.php b/pages/quotes.php index 17057c2..4fce952 100755 --- a/pages/quotes.php +++ b/pages/quotes.php | |||
| @@ -25,31 +25,31 @@ require('headerproc.php'); | |||
| 25 | $pageCategory = 'quotes'; | 25 | $pageCategory = 'quotes'; |
| 26 | 26 | ||
| 27 | $hatNav = array( array( 'title' => 'Latest', | 27 | $hatNav = array( array( 'title' => 'Latest', |
| 28 | 'url' => 'http://fourisland.com/quotes/latest.php', | 28 | 'url' => '/quotes/latest.php', |
| 29 | 'icon' => '16-star-hot' | 29 | 'icon' => '16-star-hot' |
| 30 | ), | 30 | ), |
| 31 | array( 'title' => 'Best', | 31 | array( 'title' => 'Best', |
| 32 | 'url' => 'http://fourisland.com/quotes/top.php', | 32 | 'url' => '/quotes/top.php', |
| 33 | 'icon' => 'medal_gold_1' | 33 | 'icon' => 'medal_gold_1' |
| 34 | ), | 34 | ), |
| 35 | array( 'title' => 'Worst', | 35 | array( 'title' => 'Worst', |
| 36 | 'url' => 'http://fourisland.com/quotes/bottom.php', | 36 | 'url' => '/quotes/bottom.php', |
| 37 | 'icon' => '16-message-warn' | 37 | 'icon' => '16-message-warn' |
| 38 | ), | 38 | ), |
| 39 | array( 'title' => 'Browse All', | 39 | array( 'title' => 'Browse All', |
| 40 | 'url' => 'http://fourisland.com/quotes/browse.php', | 40 | 'url' => '/quotes/browse.php', |
| 41 | 'icon' => '16-file-archive' | 41 | 'icon' => '16-file-archive' |
| 42 | ), | 42 | ), |
| 43 | array( 'title' => 'Random', | 43 | array( 'title' => 'Random', |
| 44 | 'url' => 'http://fourisland.com/quotes/random.php', | 44 | 'url' => '/quotes/random.php', |
| 45 | 'icon' => '16-clock' | 45 | 'icon' => '16-clock' |
| 46 | ), | 46 | ), |
| 47 | array( 'title' => 'Add', | 47 | array( 'title' => 'Add', |
| 48 | 'url' => 'http://fourisland.com/quotes/add.php', | 48 | 'url' => '/quotes/add.php', |
| 49 | 'icon' => '16-em-pencil' | 49 | 'icon' => '16-em-pencil' |
| 50 | ), | 50 | ), |
| 51 | array( 'title' => 'Search', | 51 | array( 'title' => 'Search', |
| 52 | 'url' => 'http://fourisland.com/quotes/search.php', | 52 | 'url' => '/quotes/search.php', |
| 53 | 'icon' => 'book_open' | 53 | 'icon' => 'book_open' |
| 54 | )); | 54 | )); |
| 55 | 55 | ||
| diff --git a/theme/header.tpl b/theme/header.tpl index 896ded5..014e34b 100755 --- a/theme/header.tpl +++ b/theme/header.tpl | |||
| @@ -3,9 +3,9 @@ | |||
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
| 4 | <head> | 4 | <head> |
| 5 | <title><!--EXTRATITLE-->Four Island</title> | 5 | <title><!--EXTRATITLE-->Four Island</title> |
| 6 | <link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css.php" /> | 6 | <link rel="stylesheet" type="text/css" href="/theme/css.php" /> |
| 7 | <!--[if IE]><link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css/ie.css" /><![endif]--> | 7 | <!--[if IE]><link rel="stylesheet" type="text/css" href="/theme/css/ie.css" /><![endif]--> |
| 8 | <link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css/print.css" media="print" /> | 8 | <link rel="stylesheet" type="text/css" href="/theme/css/print.css" media="print" /> |
| 9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 10 | <meta http-equiv="Content-Language" content="en" /> | 10 | <meta http-equiv="Content-Language" content="en" /> |
| 11 | <link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/FourIsland?format=xml" title="Four Island" /> | 11 | <link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/FourIsland?format=xml" title="Four Island" /> |
| @@ -19,7 +19,7 @@ | |||
| 19 | <div id="flash"><!--FLASH--></div> | 19 | <div id="flash"><!--FLASH--></div> |
| 20 | 20 | ||
| 21 | <div id="header"> | 21 | <div id="header"> |
| 22 | <div id="banner"><a href="http://fourisland.com/">Four Island</a></div> | 22 | <div id="banner"><a href="/">Four Island</a></div> |
| 23 | </div> | 23 | </div> |
| 24 | 24 | ||
| 25 | <div id="page-content"> | 25 | <div id="page-content"> |
| @@ -63,12 +63,12 @@ | |||
| 63 | <div class="module rounded sidebar"> | 63 | <div class="module rounded sidebar"> |
| 64 | <h3>Affiliates</h3> | 64 | <h3>Affiliates</h3> |
| 65 | 65 | ||
| 66 | <ul> | 66 | <ul> |
| 67 | <!--BEGIN AFFILIATES--> | 67 | <!--BEGIN AFFILIATES--> |
| 68 | <li> | 68 | <li> |
| 69 | <img src="/theme/images/icons/tag_<!--AFFILIATES.COLOR-->.png" alt="<!--AFFILIATES.TITLE-->" /> | 69 | <img src="/theme/images/icons/tag_<!--AFFILIATES.COLOR-->.png" alt="<!--AFFILIATES.TITLE-->" /> |
| 70 | <a href="<!--AFFILIATES.URL-->"><!--AFFILIATES.TITLE--></a> | 70 | <a href="<!--AFFILIATES.URL-->"><!--AFFILIATES.TITLE--></a> |
| 71 | </li> | 71 | </li> |
| 72 | <!--END AFFILIATES--> | 72 | <!--END AFFILIATES--> |
| 73 | </ul> | 73 | </ul> |
| 74 | </div> | 74 | </div> |
| @@ -76,12 +76,12 @@ | |||
| 76 | <div class="module rounded sidebar"> | 76 | <div class="module rounded sidebar"> |
| 77 | <h3>Website Projects</h3> | 77 | <h3>Website Projects</h3> |
| 78 | 78 | ||
| 79 | <ul> | 79 | <ul> |
| 80 | <!--BEGIN WEBPROJS--> | 80 | <!--BEGIN WEBPROJS--> |
| 81 | <li> | 81 | <li> |
| 82 | <img src="/theme/images/icons/tag_<!--WEBPROJS.COLOR-->.png" alt="<!--WEBPROJS.TITLE-->" /> | 82 | <img src="/theme/images/icons/tag_<!--WEBPROJS.COLOR-->.png" alt="<!--WEBPROJS.TITLE-->" /> |
| 83 | <a href="<!--WEBPROJS.URL-->"><!--WEBPROJS.TITLE--></a> | 83 | <a href="<!--WEBPROJS.URL-->"><!--WEBPROJS.TITLE--></a> |
| 84 | </li> | 84 | </li> |
| 85 | <!--END WEBPROJS--> | 85 | <!--END WEBPROJS--> |
| 86 | </ul> | 86 | </ul> |
| 87 | </div> | 87 | </div> |
| @@ -108,7 +108,7 @@ | |||
| 108 | <div id="content"> | 108 | <div id="content"> |
| 109 | <ul id="navbar"> | 109 | <ul id="navbar"> |
| 110 | <li<!--BLOGACTIVE-->> | 110 | <li<!--BLOGACTIVE-->> |
| 111 | <a href="http://fourisland.com/"> | 111 | <a href="/"> |
| 112 | <img src="/theme/images/icons/newspaper.png" alt="Blog" /> | 112 | <img src="/theme/images/icons/newspaper.png" alt="Blog" /> |
| 113 | <span>Blog</span> | 113 | <span>Blog</span> |
| 114 | </a> | 114 | </a> |
| @@ -119,21 +119,21 @@ | |||
| 119 | </li> | 119 | </li> |
| 120 | 120 | ||
| 121 | <li<!--FOURMACTIVE-->> | 121 | <li<!--FOURMACTIVE-->> |
| 122 | <a href="http://fourisland.com/fourm/"> | 122 | <a href="/fourm/"> |
| 123 | <img src="/theme/images/icons/comment.png" alt="The Fourm" /> | 123 | <img src="/theme/images/icons/comment.png" alt="The Fourm" /> |
| 124 | <span>The Fourm</span> | 124 | <span>The Fourm</span> |
| 125 | </a> | 125 | </a> |
| 126 | </li> | 126 | </li> |
| 127 | 127 | ||
| 128 | <li<!--POLLACTIVE-->> | 128 | <li<!--POLLACTIVE-->> |
| 129 | <a href="http://fourisland.com/poll/"> | 129 | <a href="/poll/"> |
| 130 | <img src="/theme/images/icons/overlays.png" alt="Polls" /> | 130 | <img src="/theme/images/icons/overlays.png" alt="Polls" /> |
| 131 | <span>Polls</span> | 131 | <span>Polls</span> |
| 132 | </a> | 132 | </a> |
| 133 | </li> | 133 | </li> |
| 134 | 134 | ||
| 135 | <li<!--QUOTESACTIVE-->> | 135 | <li<!--QUOTESACTIVE-->> |
| 136 | <a href="http://fourisland.com/quotes/"> | 136 | <a href="/quotes/"> |
| 137 | <img src="/theme/images/icons/16-file-page.png" alt="Quotes" /> | 137 | <img src="/theme/images/icons/16-file-page.png" alt="Quotes" /> |
| 138 | <span>Quotes</span> | 138 | <span>Quotes</span> |
| 139 | </a> | 139 | </a> |
| @@ -141,7 +141,7 @@ | |||
| 141 | 141 | ||
| 142 | <!--BEGIN MEMBERS--> | 142 | <!--BEGIN MEMBERS--> |
| 143 | <li<!--LOGACTIVE-->> | 143 | <li<!--LOGACTIVE-->> |
| 144 | <a href="http://fourisland.com/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> | 144 | <a href="/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> |
| 145 | <img src="/theme/images/icons/door_in.png" alt="Log<!--LOGDATA-->" /> | 145 | <img src="/theme/images/icons/door_in.png" alt="Log<!--LOGDATA-->" /> |
| 146 | <span>Log<!--LOGDATA--></span> | 146 | <span>Log<!--LOGDATA--></span> |
| 147 | </a> | 147 | </a> |
| @@ -150,7 +150,7 @@ | |||
| 150 | 150 | ||
| 151 | <!--BEGIN ADMIN--> | 151 | <!--BEGIN ADMIN--> |
| 152 | <li<!--PANELACTIVE-->> | 152 | <li<!--PANELACTIVE-->> |
| 153 | <a href="http://fourisland.com/admin/"> | 153 | <a href="/admin/"> |
| 154 | <img src="/theme/images/icons/rainbow.png" alt="Admin" /> | 154 | <img src="/theme/images/icons/rainbow.png" alt="Admin" /> |
| 155 | <span>Admin</span> | 155 | <span>Admin</span> |
| 156 | </a> | 156 | </a> |
| diff --git a/theme/layouts/4.5/layout.tpl b/theme/layouts/4.5/layout.tpl index a90bdf3..3654a6a 100755 --- a/theme/layouts/4.5/layout.tpl +++ b/theme/layouts/4.5/layout.tpl | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | <HEAD> | 2 | <HEAD> |
| 3 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> | 3 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> |
| 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="/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="/theme/css/thickbox.css" /> |
| 7 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> | 7 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> |
| 8 | <META HTTP-EQUIV="Content-Language" CONTENT="en" /> | 8 | <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" /> | 9 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="http://feeds.feedburner.com/FourIsland?format=xml" TITLE="Four Island" /> |
| @@ -40,7 +40,7 @@ | |||
| 40 | <LI id="bannernav-wiki"><A HREF="/wiki/"><B><SPAN>Wiki</SPAN></B></A></LI> | 40 | <LI id="bannernav-wiki"><A HREF="/wiki/"><B><SPAN>Wiki</SPAN></B></A></LI> |
| 41 | <LI id="bannernav-poll"><A HREF="/poll/"><B><SPAN>Poll</SPAN></B></A></LI> | 41 | <LI id="bannernav-poll"><A HREF="/poll/"><B><SPAN>Poll</SPAN></B></A></LI> |
| 42 | <LI id="bannernav-quotes"><A HREF="/quotes/"><B><SPAN>Quotes</SPAN></B></A></LI> | 42 | <LI id="bannernav-quotes"><A HREF="/quotes/"><B><SPAN>Quotes</SPAN></B></A></LI> |
| 43 | <LI id="bannernav-<!--LOWERLOGDATA-->"><A HREF="http://fourisland.com/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"><B><SPAN>Log<!--LOGDATA--></SPAN></B></A></LI> | 43 | <LI id="bannernav-<!--LOWERLOGDATA-->"><A HREF="/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"><B><SPAN>Log<!--LOGDATA--></SPAN></B></A></LI> |
| 44 | <!--BEGIN PANEL--> | 44 | <!--BEGIN PANEL--> |
| 45 | <LI id="bannernav-panel"><A HREF="/admin/"><B><SPAN>Panel</SPAN></B></A></LI> | 45 | <LI id="bannernav-panel"><A HREF="/admin/"><B><SPAN>Panel</SPAN></B></A></LI> |
| 46 | <!--END PANEL--> | 46 | <!--END PANEL--> |
| diff --git a/theme/layouts/6.2/layout.tpl b/theme/layouts/6.2/layout.tpl index 889d509..49884f1 100755 --- a/theme/layouts/6.2/layout.tpl +++ b/theme/layouts/6.2/layout.tpl | |||
| @@ -4,9 +4,9 @@ | |||
| 4 | <HEAD> | 4 | <HEAD> |
| 5 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> | 5 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> |
| 6 | 6 | ||
| 7 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->"> | 7 | <LINK REL="stylesheet" TYPE="text/css" HREF="/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->"> |
| 8 | <!--[if IE]><LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/ie.css"><![endif]--> | 8 | <!--[if IE]><LINK REL="stylesheet" TYPE="text/css" HREF="/theme/css/ie.css"><![endif]--> |
| 9 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/print.css" MEDIA="print"> | 9 | <LINK REL="stylesheet" TYPE="text/css" HREF="/theme/css/print.css" MEDIA="print"> |
| 10 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> | 10 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> |
| 11 | <META HTTP-EQUIV="Content-Language" CONTENT="en"> | 11 | <META HTTP-EQUIV="Content-Language" CONTENT="en"> |
| 12 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="http://feeds.feedburner.com/FourIsland?format=xml" TITLE="Four Island"> | 12 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="http://feeds.feedburner.com/FourIsland?format=xml" TITLE="Four Island"> |
| @@ -34,7 +34,7 @@ | |||
| 34 | <DIV> | 34 | <DIV> |
| 35 | <UL> | 35 | <UL> |
| 36 | <LI<!--HOMEACTIVE-->> | 36 | <LI<!--HOMEACTIVE-->> |
| 37 | <A HREF="http://fourisland.com/"> | 37 | <A HREF="/"> |
| 38 | <IMG SRC="/theme/images/icons/newspaper.png" ALT="Blog"> | 38 | <IMG SRC="/theme/images/icons/newspaper.png" ALT="Blog"> |
| 39 | <SPAN>Blog</SPAN> | 39 | <SPAN>Blog</SPAN> |
| 40 | </A> | 40 | </A> |
| @@ -45,7 +45,7 @@ | |||
| 45 | </LI> | 45 | </LI> |
| 46 | 46 | ||
| 47 | <LI<!--FOURMACTIVE-->> | 47 | <LI<!--FOURMACTIVE-->> |
| 48 | <A HREF="http://fourisland.com/fourm/"> | 48 | <A HREF="/fourm/"> |
| 49 | <IMG SRC="/theme/images/icons/comment.png" ALT="The Fourm"> | 49 | <IMG SRC="/theme/images/icons/comment.png" ALT="The Fourm"> |
| 50 | <SPAN>The Fourm</SPAN> | 50 | <SPAN>The Fourm</SPAN> |
| 51 | </A> | 51 | </A> |
| @@ -53,21 +53,21 @@ | |||
| 53 | 53 | ||
| 54 | 54 | ||
| 55 | <LI<!--WIKIACTIVE-->> | 55 | <LI<!--WIKIACTIVE-->> |
| 56 | <A HREF="http://fourisland.com/wiki/"> | 56 | <A HREF="/wiki/"> |
| 57 | <IMG SRC="/theme/images/icons/report.png" ALT="Wiki"> | 57 | <IMG SRC="/theme/images/icons/report.png" ALT="Wiki"> |
| 58 | <SPAN>Wiki</SPAN> | 58 | <SPAN>Wiki</SPAN> |
| 59 | </A> | 59 | </A> |
| 60 | </LI> | 60 | </LI> |
| 61 | 61 | ||
| 62 | <LI<!--POLLACTIVE-->> | 62 | <LI<!--POLLACTIVE-->> |
| 63 | <A HREF="http://fourisland.com/poll/"> | 63 | <A HREF="/poll/"> |
| 64 | <IMG SRC="/theme/images/icons/overlays.png" ALT="Polls"> | 64 | <IMG SRC="/theme/images/icons/overlays.png" ALT="Polls"> |
| 65 | <SPAN>Polls</SPAN> | 65 | <SPAN>Polls</SPAN> |
| 66 | </A> | 66 | </A> |
| 67 | </LI> | 67 | </LI> |
| 68 | 68 | ||
| 69 | <LI<!--QUOTESACTIVE-->> | 69 | <LI<!--QUOTESACTIVE-->> |
| 70 | <A HREF="http://fourisland.com/quotes/"> | 70 | <A HREF="/quotes/"> |
| 71 | <IMG SRC="/theme/images/icons/16-file-page.png" ALT="Quotes"> | 71 | <IMG SRC="/theme/images/icons/16-file-page.png" ALT="Quotes"> |
| 72 | <SPAN>Quotes</SPAN> | 72 | <SPAN>Quotes</SPAN> |
| 73 | </A> | 73 | </A> |
| @@ -75,7 +75,7 @@ | |||
| 75 | 75 | ||
| 76 | <!--BEGIN MEMBERS--> | 76 | <!--BEGIN MEMBERS--> |
| 77 | <LI<!--LOGACTIVE-->> | 77 | <LI<!--LOGACTIVE-->> |
| 78 | <A HREF="http://fourisland.com/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> | 78 | <A HREF="/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> |
| 79 | <IMG SRC="/theme/images/icons/door_in.png" ALT="Log<!--LOGDATA-->"> | 79 | <IMG SRC="/theme/images/icons/door_in.png" ALT="Log<!--LOGDATA-->"> |
| 80 | <SPAN>Log<!--LOGDATA--></SPAN> | 80 | <SPAN>Log<!--LOGDATA--></SPAN> |
| 81 | </A> | 81 | </A> |
| @@ -84,7 +84,7 @@ | |||
| 84 | 84 | ||
| 85 | <!--BEGIN ADMIN--> | 85 | <!--BEGIN ADMIN--> |
| 86 | <LI<!--PANELACTIVE-->> | 86 | <LI<!--PANELACTIVE-->> |
| 87 | <A HREF="http://fourisland.com/admin/"> | 87 | <A HREF="/admin/"> |
| 88 | <IMG SRC="/theme/images/icons/rainbow.png" ALT="Admin"> | 88 | <IMG SRC="/theme/images/icons/rainbow.png" ALT="Admin"> |
| 89 | <SPAN>Admin</SPAN> | 89 | <SPAN>Admin</SPAN> |
| 90 | </A> | 90 | </A> |
| diff --git a/theme/layouts/7/layout.tpl b/theme/layouts/7/layout.tpl index 3acf1cc..b944475 100755 --- a/theme/layouts/7/layout.tpl +++ b/theme/layouts/7/layout.tpl | |||
| @@ -3,9 +3,9 @@ | |||
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
| 4 | <head> | 4 | <head> |
| 5 | <title><!--EXTRATITLE-->Four Island</title> | 5 | <title><!--EXTRATITLE-->Four Island</title> |
| 6 | <link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css.php" /> | 6 | <link rel="stylesheet" type="text/css" href="/theme/css.php" /> |
| 7 | <!--[if IE]><link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css/ie.css" /><![endif]--> | 7 | <!--[if IE]><link rel="stylesheet" type="text/css" href="/theme/css/ie.css" /><![endif]--> |
| 8 | <link rel="stylesheet" type="text/css" href="http://fourisland.com/theme/css/print.css" media="print" /> | 8 | <link rel="stylesheet" type="text/css" href="/theme/css/print.css" media="print" /> |
| 9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 10 | <meta http-equiv="Content-Language" content="en" /> | 10 | <meta http-equiv="Content-Language" content="en" /> |
| 11 | <link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/FourIsland?format=xml" title="Four Island" /> | 11 | <link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/FourIsland?format=xml" title="Four Island" /> |
| @@ -19,7 +19,7 @@ | |||
| 19 | <div id="flash"><!--FLASH--></div> | 19 | <div id="flash"><!--FLASH--></div> |
| 20 | 20 | ||
| 21 | <div id="header"> | 21 | <div id="header"> |
| 22 | <div id="banner"><a href="http://fourisland.com/">Four Island</a></div> | 22 | <div id="banner"><a href="/">Four Island</a></div> |
| 23 | </div> | 23 | </div> |
| 24 | 24 | ||
| 25 | <div id="page-content"> | 25 | <div id="page-content"> |
| @@ -121,7 +121,7 @@ | |||
| 121 | <div id="content"> | 121 | <div id="content"> |
| 122 | <ul id="navbar"> | 122 | <ul id="navbar"> |
| 123 | <li<!--BLOGACTIVE-->> | 123 | <li<!--BLOGACTIVE-->> |
| 124 | <a href="http://fourisland.com/"> | 124 | <a href="/"> |
| 125 | <img src="/theme/images/icons/newspaper.png" alt="Blog" /> | 125 | <img src="/theme/images/icons/newspaper.png" alt="Blog" /> |
| 126 | <span>Blog</span> | 126 | <span>Blog</span> |
| 127 | </a> | 127 | </a> |
| @@ -132,28 +132,28 @@ | |||
| 132 | </li> | 132 | </li> |
| 133 | 133 | ||
| 134 | <li<!--FOURMACTIVE-->> | 134 | <li<!--FOURMACTIVE-->> |
| 135 | <a href="http://fourisland.com/fourm/"> | 135 | <a href="/fourm/"> |
| 136 | <img src="/theme/images/icons/comment.png" alt="The Fourm" /> | 136 | <img src="/theme/images/icons/comment.png" alt="The Fourm" /> |
| 137 | <span>The Fourm</span> | 137 | <span>The Fourm</span> |
| 138 | </a> | 138 | </a> |
| 139 | </li> | 139 | </li> |
| 140 | 140 | ||
| 141 | <li<!--WIKIACTIVE-->> | 141 | <li<!--WIKIACTIVE-->> |
| 142 | <a href="http://fourisland.com/wiki/"> | 142 | <a href="/wiki/"> |
| 143 | <img src="/theme/images/icons/report.png" alt="Wiki" /> | 143 | <img src="/theme/images/icons/report.png" alt="Wiki" /> |
| 144 | <span>Wiki</span> | 144 | <span>Wiki</span> |
| 145 | </a> | 145 | </a> |
| 146 | </li> | 146 | </li> |
| 147 | 147 | ||
| 148 | <li<!--POLLACTIVE-->> | 148 | <li<!--POLLACTIVE-->> |
| 149 | <a href="http://fourisland.com/poll/"> | 149 | <a href="/poll/"> |
| 150 | <img src="/theme/images/icons/overlays.png" alt="Polls" /> | 150 | <img src="/theme/images/icons/overlays.png" alt="Polls" /> |
| 151 | <span>Polls</span> | 151 | <span>Polls</span> |
| 152 | </a> | 152 | </a> |
| 153 | </li> | 153 | </li> |
| 154 | 154 | ||
| 155 | <li<!--QUOTESACTIVE-->> | 155 | <li<!--QUOTESACTIVE-->> |
| 156 | <a href="http://fourisland.com/quotes/"> | 156 | <a href="/quotes/"> |
| 157 | <img src="/theme/images/icons/16-file-page.png" alt="Quotes" /> | 157 | <img src="/theme/images/icons/16-file-page.png" alt="Quotes" /> |
| 158 | <span>Quotes</span> | 158 | <span>Quotes</span> |
| 159 | </a> | 159 | </a> |
| @@ -161,7 +161,7 @@ | |||
| 161 | 161 | ||
| 162 | <!--BEGIN MEMBERS--> | 162 | <!--BEGIN MEMBERS--> |
| 163 | <li<!--LOGACTIVE-->> | 163 | <li<!--LOGACTIVE-->> |
| 164 | <a href="http://fourisland.com/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> | 164 | <a href="/fourm/ucp.php?mode=log<!--LOGDATA-->&redirect=<!--REDIRPAGE-->&sid=<!--SID-->"> |
| 165 | <img src="/theme/images/icons/door_in.png" alt="Log<!--LOGDATA-->" /> | 165 | <img src="/theme/images/icons/door_in.png" alt="Log<!--LOGDATA-->" /> |
| 166 | <span>Log<!--LOGDATA--></span> | 166 | <span>Log<!--LOGDATA--></span> |
| 167 | </a> | 167 | </a> |
| @@ -170,7 +170,7 @@ | |||
| 170 | 170 | ||
| 171 | <!--BEGIN ADMIN--> | 171 | <!--BEGIN ADMIN--> |
| 172 | <li<!--PANELACTIVE-->> | 172 | <li<!--PANELACTIVE-->> |
| 173 | <a href="http://fourisland.com/admin/"> | 173 | <a href="/admin/"> |
| 174 | <img src="/theme/images/icons/rainbow.png" alt="Admin" /> | 174 | <img src="/theme/images/icons/rainbow.png" alt="Admin" /> |
| 175 | <span>Admin</span> | 175 | <span>Admin</span> |
| 176 | </a> | 176 | </a> |
| diff --git a/theme/layouts/7/style.css b/theme/layouts/7/style.css index e90ee05..2816c53 100755 --- a/theme/layouts/7/style.css +++ b/theme/layouts/7/style.css | |||
| @@ -8,7 +8,7 @@ body { | |||
| 8 | div#header { | 8 | div#header { |
| 9 | width: 100%; | 9 | width: 100%; |
| 10 | height: 200px; | 10 | height: 200px; |
| 11 | background-image: url(http://fourisland.com/theme/images/header-repeat.png); | 11 | background-image: url(/theme/images/header-repeat.png); |
| 12 | background-repeat: repeat-x; | 12 | background-repeat: repeat-x; |
| 13 | } | 13 | } |
| 14 | 14 | ||
| @@ -16,7 +16,7 @@ div#banner { | |||
| 16 | width: 800px; | 16 | width: 800px; |
| 17 | height: 200px; | 17 | height: 200px; |
| 18 | margin: 0 auto; | 18 | margin: 0 auto; |
| 19 | background-image: url(http://fourisland.com/theme/images/header.png); | 19 | background-image: url(/theme/images/header.png); |
| 20 | background-position: bottom right; | 20 | background-position: bottom right; |
| 21 | } | 21 | } |
| 22 | 22 | ||
