Skip to content

Instantly share code, notes, and snippets.

@cj
Created December 31, 2010 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cj/760554 to your computer and use it in GitHub Desktop.
Save cj/760554 to your computer and use it in GitHub Desktop.
<?= doctype('html5')."\n"; ?>
<html>
<head>
<?= meta('Content-type', 'text/html; charset=utf-8', 'equiv'); ?>
<?= view_var('meta'); ?>
<title><?= view_var('title'); ?></title>
<?= view_var('head'); ?>
<?= css('framework/*'); ?>
<?= css('../auth/login'); ?>
</head>
<body>
<div id="login-box">
<div class="center">
<div class="content padding">
<?= view_var('body'); ?>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment