Created
November 12, 2009 22:06
-
-
Save thrashr888/233348 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>Wishcraft Admin Interface</title> | |
<link rel="shortcut icon" href="/favicon.ico" /> | |
<?php use_stylesheet('admin.css') ?> | |
<?php include_javascripts() ?> | |
<?php include_stylesheets() ?> | |
</head> | |
<body> | |
<div id="container"> | |
<div id="header"> | |
<h1> | |
<a href="<?php echo url_for('@homepage') ?>"> </a> | |
</h1> | |
</div> | |
<div id="menu"> | |
<div style="float:right;"><a href="/">Wishcraft Home »</a></div> | |
<ul> | |
<li> | |
<?php echo link_to('Admin Home', '@homepage') ?> | |
</li> | |
<li>|</li> | |
<li> | |
<?php echo link_to('Accounts', '@account') ?> | |
</li> | |
<li> | |
<?php echo link_to('User Logins', '@sf_guard_user') ?> | |
</li> | |
<li> | |
<?php echo link_to('Lyra Content', '@lyra_content') ?> | |
</li> | |
<li> | |
<?php echo link_to('Lyra Versions', '@lyra_version') ?> | |
</li> | |
</ul> | |
</div> | |
<div id="content"> | |
<?php echo $sf_content ?> | |
</div> | |
<div id="footer"> | |
Wishcraft Admin | |
powered by <a href="http://www.symfony-project.org/">symfony framework</a> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment