1 | initial version |
What i did was basically include this:
<script type="text/javascript">
if (location.href=='url1')
{
document.write('content1');
}
if (location.href=='url2')
{
document.write('content2');
}
</script>
in /devel/sagenb-main/sagenb/data/sage/html/login.html, where url1 and url2 are the complete urls of each notebook, and content1 and content2 the contents you want the paage to show in each case.