Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created December 6, 2011 21:45
Show Gist options
  • Save eminetto/1440147 to your computer and use it in GitHub Desktop.
Save eminetto/1440147 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<h2>Blog do Minetto</h2>
<?php
//mensagens de erro
$messages = new Zend_Session_Namespace('Messages');
if(isset($messages->erro))
echo "<p> $messages->erro </p>";
unset($messages->erro);
?>
<?php
//usuario logado?
$auth = Zend_Auth::getInstance();
if ($auth->hasIdentity()) { ?>
<p><a href="/post/logout">Sair</a></p>
<?php
}
?>
<?php echo $this->layout()->content; ?>
<p>Copyleft @eminetto</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment