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

cook: typo
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 13 01:06:51 2012 +0200 (2012-05-13)
parents cfc3b89cfd28
children b11f636d76aa
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>Cooker's</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><a href="arm/">arm</a></li>
22 <li><a href="x86_64/">x86_64</a></li>
23 </ul>
25 </div>
26 </body>
27 </html>
28 EOT
30 exit 0