Skip to content

Instantly share code, notes, and snippets.

@thrashr888
Created November 12, 2009 22:06
Show Gist options
  • Save thrashr888/233348 to your computer and use it in GitHub Desktop.
Save thrashr888/233348 to your computer and use it in GitHub Desktop.
<!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') ?>">&nbsp;</a>
</h1>
</div>
<div id="menu">
<div style="float:right;"><a href="/">Wishcraft Home &raquo;</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