Page title and meta helpers
In your layout:
<?php title()->setDelimiter(' | '); ?>
<html>
<head>
<title><?php echo title()->render(); ?></title>
<?php echo meta()->render(); ?>
</head>
<body>
<!-- ... -->
</body>
</html>
In your view:
<?php
title()->prepend('My title');
meta()->add('description', 'My description');
?>
<h1>My title</h1>
<!-- ... -->