view simplewiki/templates/index.html @ 0:d5102c881cb5

initial commit
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 07 Sep 2010 17:50:04 -0700
parents
children 2464e2051b78
line wrap: on
line source

<!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>