diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/footer.html | 7 | ||||
-rw-r--r-- | www/header.html | 33 | ||||
-rw-r--r-- | www/index.html | 11 |
3 files changed, 48 insertions, 3 deletions
diff --git a/www/footer.html b/www/footer.html new file mode 100644 index 00000000..546f63b8 --- /dev/null +++ b/www/footer.html @@ -0,0 +1,7 @@ +</td></tr></table> +<hr /> +<table width="100%"> +<tr><td>Copyright 2006 Rob Landley <rob@landley.net></td></tr> +</table> +</body> +</html> diff --git a/www/header.html b/www/header.html new file mode 100644 index 00000000..1f22b277 --- /dev/null +++ b/www/header.html @@ -0,0 +1,33 @@ +<html> +<head> +<title>toybox</title> +</head> +<body> +<table border=0 cellpadding=0 cellspacing=0> +<tr><td> + <table border=0 cellspacing=1 cellpadding=4> + <tr><td><h1>toybox</h1></td></tr> + </table> +</td></tr> + +<tr><td valign=top> + <b>About</b> + <ul> + <li><a href="index.html">News</a></li> + <li><a href="about.html">What is it?</a></li> + <li><a href="design.html">Design Docs</a></li> + </ul> + <b>Download</b> + <ul> + <li><a href="/hg/toybox">Mercurial Repository</a></li> + <li><a href="downloads">Release Tarballs</a></li> + </ul> + <b>Development</b> + <ul> + <li><a href="/notes.html">Maintainer's Log</a></li> + <li><a href="http://www2.them.com:8080/cgi-bin/mailman/listinfo/toybox">Mailing List</a></li> + </ul> +</td> + +<td valign=top> + diff --git a/www/index.html b/www/index.html index 94a545ae..56fdf216 100644 --- a/www/index.html +++ b/www/index.html @@ -1,5 +1,8 @@ -<html><title>toybox</title> -<body> +<!--#include file="header.html" --> + +<p>Jan 31: Screwing up the web page a bit, adding an index bar along the side +which doesn't properly connect up to anything yet. (Busy implementing +mke2fs and gene2fs.)</p> <p>Warning: lots of this page is about what I plan to do, not what I've already done. See <a href="#status>status</a> or <a href="/notes.html>my @@ -76,7 +79,7 @@ commit was September 27, 2006, and work is ongoing.</p> strlcpy(), xexec(), xopen()/xread(), xgetcwd(), xabspath(), find_in_path(), itoa().</li> -<b><h2><a name="download" />Download</h2></b> +<b><h2><a name="downloads" />Download</h2></b> <p>This project is maintained as a mercurial archive. To get a copy of the current development version, either use mercurial (hg clone @@ -90,3 +93,5 @@ is the current development version).</p> <p>My <a href=/notes.html>development log</a> is currently the best way to track what's going on with this project. There's also a <a href=http://www2.them.com:8080/cgi-bin/mailman/listinfo/toybox>mailing list</a> for toybox development.</p> + +<!--#include file="footer.html" --> |