Changeset 44
- Timestamp:
- 07/31/07 06:29:30 (1 year ago)
- Files:
-
- website/about.php (modified) (1 diff)
- website/contact.php (modified) (1 diff)
- website/header.inc (modified) (1 diff)
- website/menubar.inc (modified) (1 diff)
- website/sidebar.inc (modified) (1 diff)
- website/utils.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
website/about.php
r22 r44 6 6 include "header.inc"; 7 7 8 echo "Pagina Hydrogen";9 8 10 9 include "footer.inc"; website/contact.php
r22 r44 1 1 <? 2 2 3 $page = " feedback";3 $page = "contact"; 4 4 $page_description = "Send your feedback"; 5 5 website/header.inc
r43 r44 11 11 12 12 <style type="text/css"> 13 @import url(" main.css");13 @import url("<? echo $site_root ?>/main.css"); 14 14 </style> 15 15 <style type="text/css"> 16 @import url(" round_corners.css");16 @import url("<? echo $site_root ?>/round_corners.css"); 17 17 </style> 18 18 19 <link rel="alternate" type="application/rss+xml" href=" rss_news.php" title="Hydrogen News" />19 <link rel="alternate" type="application/rss+xml" href="<? echo $site_root ?>/rss_news.php" title="Hydrogen News" /> 20 20 </head> 21 21 <body> website/menubar.inc
r43 r44 23 23 <table border="0" cellpadding="0px" cellspacing="0" width="1000px"> 24 24 <tr> 25 <td><img src=" images/btn_background_left.png"></td>25 <td><img src="<? echo $site_root ?>/images/btn_background_left.png"></td> 26 26 <!-- <td background="images/btn_background.png"><img src="images/hydrogen_icon32x32.png"></td>--> 27 27 <? 28 28 if ($page == "news") { 29 make_menu_button("News", true, " news.php");29 make_menu_button("News", true, "$site_root/news.php"); 30 30 } 31 31 else { 32 make_menu_button("News", false, " news.php");32 make_menu_button("News", false, "$site_root/news.php"); 33 33 } 34 34 35 35 36 36 if ($page == "features") { 37 make_menu_button("Features", true, " features.php");37 make_menu_button("Features", true, "$site_root/features.php"); 38 38 } 39 39 else { 40 make_menu_button("Features", false, " features.php");40 make_menu_button("Features", false, "$site_root/features.php"); 41 41 } 42 42 43 43 if ($page == "downloads") { 44 make_menu_button("Downloads", true, " downloads.php");44 make_menu_button("Downloads", true, "$site_root/downloads.php"); 45 45 } 46 46 else { 47 make_menu_button("Downloads", false, " downloads.php");47 make_menu_button("Downloads", false, "$site_root/downloads.php"); 48 48 } 49 49 50 50 if ($page == "development") { 51 make_menu_button("Development", true, " development.php");51 make_menu_button("Development", true, "$site_root/development.php"); 52 52 } 53 53 else { 54 make_menu_button("Development", false, " development.php");54 make_menu_button("Development", false, "$site_root/development.php"); 55 55 } 56 56 57 57 58 58 if ($page == "forums") { 59 make_menu_button("Forums", true, " forum/");59 make_menu_button("Forums", true, "$site_root/forum/"); 60 60 } 61 61 else { 62 make_menu_button("Forums", false, " forum/");62 make_menu_button("Forums", false, "$site_root/forum/"); 63 63 } 64 64 65 65 66 66 if ($page == "faq") { 67 make_menu_button("FAQ", true, " faq.php");67 make_menu_button("FAQ", true, "$site_root/faq.php"); 68 68 } 69 69 else { 70 make_menu_button("FAQ", false, " faq.php");70 make_menu_button("FAQ", false, "$site_root/faq.php"); 71 71 } 72 72 73 73 74 74 if ($page == "mailinglists") { 75 make_menu_button("Mailing lists", true, " mailinglists.php");75 make_menu_button("Mailing lists", true, "$site_root/mailinglists.php"); 76 76 } 77 77 else { 78 make_menu_button("Mailing lists", false, " mailinglists.php");78 make_menu_button("Mailing lists", false, "$site_root/mailinglists.php"); 79 79 } 80 80 81 81 // spacer centrale 82 echo '<td width="100%" background=" images/btn_background.png"></td>';82 echo '<td width="100%" background="'.$site_root.'/images/btn_background.png"></td>'; 83 83 84 84 85 85 if ($page == "contact") { 86 make_menu_button("Contact", true, " contact.php");86 make_menu_button("Contact", true, "$site_root/contact.php"); 87 87 } 88 88 else { 89 make_menu_button("Contact", false, " contact.php");89 make_menu_button("Contact", false, "$site_root/contact.php"); 90 90 } 91 91 92 92 93 93 if ($page == "about") { 94 make_menu_button("About", true, " about.php");94 make_menu_button("About", true, "$site_root/about.php"); 95 95 } 96 96 else { 97 make_menu_button("About", false, " about.php");97 make_menu_button("About", false, "$site_root/about.php"); 98 98 } 99 99 ?> 100 <td><img src=" images/btn_background_right.png"></td>100 <td><img src="<? echo $site_root ?>/images/btn_background_right.png"></td> 101 101 </tr> 102 102 </table> website/sidebar.inc
r22 r44 11 11 <center> 12 12 <a href="https://sourceforge.net/donate/index.php?group_id=24662"> 13 <img src=" images/paypaldonate.gif" border="0">13 <img src="'.$site_root.'/images/paypaldonate.gif" border="0"> 14 14 </a> 15 15 </center> website/utils.inc
r22 r44 1 1 <? 2 2 function draw_title($title) { 3 global $site_root; 3 4 ?> 4 5 <table border="0" width="100%" height="25px" cellspacing="0" cellpadding="0"> 5 6 <tr> 6 <td><img src=" images/title_background_left.png"></td>7 <td><img src="<? echo $site_root ?>/images/title_background_left.png"></td> 7 8 8 <td width="100%" background=" images/title_background.png">9 <td width="100%" background="<? echo $site_root ?>/images/title_background.png"> 9 10 <font color="#EEEEEE"> <b><? echo $title ?></b></font> 10 11 </td> 11 <td><img src=" images/title_background_right.png"></td>12 <td><img src="<? echo $site_root ?>/images/title_background_right.png"></td> 12 13 </tr> 13 14 </table>
