@acanto/core-seo

From each single route template you can set and override the default values. E.g. in your `/routes/myroutename/index.php` you can have:

Usage no npm install needed!

<script type="module">
  import acantoCoreSeo from 'https://cdn.skypack.dev/@acanto/core-seo';
</script>

README

SEO

From each single route template you can set and override the default values. E.g. in your /routes/myroutename/index.php you can have:

<?php
// Route: myroutename

function onStart()
{
  // ... get data from API or wherever

  $this['seo'] = [
    'meta_title' => 'Override meta title bypassing SEO plugin',
    'index' => 'noindex',
    'itemtype' => 'ItemPage', // as one of on https://schema.org/
  ];
}

?>