Mercurial > hg > MakeItSo
diff makeitso/templates/index.html @ 14:bf1ce840d0f0
make this a genshi view (should be: tempita view)
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 15 Nov 2010 08:05:55 -0800 |
parents | |
children | 941c1f73c2b6 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeitso/templates/index.html Mon Nov 15 08:05:55 2010 -0800 @@ -0,0 +1,22 @@ +<!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:py="http://genshi.edgewall.org/" + xmlns:xi="http://www.w3.org/2001/XInclude"> +<head> +<title>Hello world</title> +<script src="${link('jquery.js')}"></script> +<script type="text/javascript"> +$(document).ready(function(){ +$(".text-input").click(function(){ +$(this).replaceWith('<form method="post"><input type="text" name="name" value="${name}"/><input type="submit" value="Go!"/></form>'); +}); +}); +</script> +</head> +<body> +<xi:include href="navigation.html" /> +Hello <span class="text-input">${name}</span>! +</body> +</html>