diff options
author | tardo <tardo@nagi-fanboi.net> | 2007-09-25 18:40:48 -0400 |
---|---|---|
committer | tardo <tardo@nagi-fanboi.net> | 2007-09-25 18:40:48 -0400 |
commit | b76faddb10fb53266e4f934a58edf30ba7935025 (patch) | |
tree | ced58337bcbc070c67fd1fc659bfb9001246b9bc /web/html/index.php | |
parent | 1769285c36f333cc06be91332984686f64a74b88 (diff) | |
parent | 7c7685ce82f1779f6f991533df7f5e6d6ac8fe21 (diff) | |
download | aurweb-b76faddb10fb53266e4f934a58edf30ba7935025.tar.xz |
Merge branch 'testing' of git://git.mattal.com/aur into test
Fixed regressions.
Diffstat (limited to 'web/html/index.php')
-rw-r--r-- | web/html/index.php | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/web/html/index.php b/web/html/index.php index d175797..4e38e1e 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -79,19 +79,19 @@ if (isset($_REQUEST["user"]) || isset($_REQUEST["pass"])) { html_header(); # Big Top Level Table (Table 1) -print "<table border='0' cellpadding='0' cellspacing='3' width='90%'>\n"; -print "<tr>\n"; +echo "<div class=\"pgbox\">\n"; +echo " <div class=\"pgboxtitle\"><span class=\"f3\">AUR-".__("Home")."</span></div>\n"; +echo " <div class=\"frontpgboxbody\">\n"; +echo "<table border='0' cellpadding='0' cellspacing='3' width='90%'>\n"; +echo "<tr>\n"; # MAIN: Top Left print "<td class='boxSoft' valign='top'>"; print "<p>".__("Welcome to the AUR! Please read the %hAUR User Guidelines%h and %hAUR TU Guidelines%h for more information.", array('<a href="http://wiki.archlinux.org/index.php/AUR_User_Guidelines">', '</a>', '<a href="http://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">', '</a>'))."<br>"; print __("Contributed PKGBUILDs <b>must</b> conform to the %hArch Packaging Standards%h otherwise they will be deleted!", array('<a href="http://wiki.archlinux.org/index.php/Arch_Packaging_Standards">', '</a>'))."</p>"; -#print "<p>".__("If you have feedback about the AUR, please leave it in %hFlyspray%h.", array('<a href="http://bugs.archlinux.org/index.php?tasks=all&project=2">', '</a>'))."<br>"; -#print __("Email discussion about the AUR takes place on the %sTUR Users List%s.", array('<a href="http://www.archlinux.org/mailman/listinfo/tur-users">', '</a>'))."</p>"; print "<p>".__("Remember to vote for your favourite packages!")."<br>"; print __("The most popular packages will be provided as binary packages in [community].")."</p>"; -#print "<p>".__("Though we can't vouch for their contents, we provide a %hlist of user repositories%h for your convenience.", array('<a href="http://wiki2.archlinux.org/index.php/Unofficial%20Repositories">', '</a>'))."</p>"; # MAIN: Top Right print "</td>"; @@ -178,9 +178,6 @@ print "</tr>"; print "</table>"; # End Table 2 -#print " <td> </td>"; -#print " <td align='left' valign='top' nowrap>\n"; - # MAIN: Bottom Right print "</td>"; print "<td class='boxSoft' valign='top'>"; @@ -357,8 +354,10 @@ print "</table>"; print " </td>"; print "</tr>\n"; print "</table>\n"; +echo "</div>\n"; # End Table 1 - +echo " </div>"; +echo "</div>"; html_footer("<b>Version 1.3.1</b> \$Id$"); # vim: ts=2 sw=2 noet ft=php ?> |