slitaz-forge view cook/cross/index.cgi @ rev 306

cook: small edit to cross/index.cgi
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 13 01:23:39 2012 +0200 (2012-05-13)
parents 8903faf5cfbb
children f377d5247d0c
line source
1 #!/bin/sh
2 #
3 #. /usr/lib/slitaz/httphelper
4 #header
5 echo "Content-Type: text/html"
6 echo ""
8 cat header.html
10 cat << EOT
12 <h2>SliTaz Cross</h2>
14 <p>
15 SliTaz is actually ported to the ARM platform and work is on the stove
16 for the x86_64 architecture. Please read the Cookutils cross howto for
17 more informations.
18 </p>
20 <ul>
21 <li>Arch: <a href="arm/">arm</a>
22 [ <a href="arm/toolchain.cgi">toolchain</a> ]</li>
23 <li>Arch: <a href="x86_64/">x86_64</a></li>
24 </ul>
26 </div>
27 </body>
28 </html>
29 EOT
31 exit 0