Skip to content

Page title and meta helpers

Compare
Choose a tag to compare
@tannerhodges tannerhodges released this 26 Oct 18:32
· 18 commits to master since this release

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>
<!-- ... -->

More Details