[Lambda-cvs] lambda/templates guiframe.tpl,NONE,1.1 sidebar.tpl,NONE,1.1 siteheader.tpl,NONE,1.1
Status: Pre-Alpha
Brought to you by:
ariejan
From: Ariejan de V. <ar...@us...> - 2004-07-08 09:52:18
|
Update of /cvsroot/lambda/lambda/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14548/templates Added Files: guiframe.tpl sidebar.tpl siteheader.tpl Log Message: * Added *very* basic GUI * Added client/admin login and logout functionality * Updated stylesheet --- NEW FILE: siteheader.tpl --- {include file="header.tpl"} {$content} {include file="footer.tpl"} --- NEW FILE: sidebar.tpl --- {include file="header.tpl"} {$content} {include file="footer.tpl"} --- NEW FILE: guiframe.tpl --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Lambda</title> <link rel="stylesheet" type="text/css" href="/stylesheet.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <frameset rows="75,100%" frameborder="0"> <frame noresize="noresize" src="siteheader.php" name="siteheader"> <frameset cols="160,100%"> <frame noresize="noresize" src="sidebar.php" name="sidebar"> <frame noresize="noresize" src="overview.php" name="contentpane"> </frameset> </frameset> </html> |