Improve SEO in your Statamic-powered site!
- Meta Tags: The standard meta tags for title, description, and robots
- OpenGraph: Improve how your website looks when is shared in social networks like Facebook, Twitter, and Slack
- Structured Data: Let the search engines know the semantic meaning of the content of your website
- Sitemap: Automatically create an XML sitemap that includes all your URLs (index by collection)
- Webmaster Tools: With Findable, verifying your website never was so easy!
- Marketing: Forget about code-spagetting when implementing marketing tools! Use Google Tag Manager with a single setting
- HREF Lang: If your Statamic installation is multisite for multiple languages, Findable will find them and add accordingly the available translations for every entry
Via composer:
composer require elaniin/findable
Publish config (optional):
php artisan vendor:publish --provider="Elaniin\Findable\ServiceProvider" --tag=config
Publish views (optional):
php artisan vendor:publish --provider="Elaniin\Findable\ServiceProvider" --tag=views
Publish translations (optional):
php artisan vendor:publish --provider="Elaniin\Findable\ServiceProvider" --tag=translations
Add Findable's tags to your layout:
{{ findable:head }}
: Should be within the<head>
tag{{ findable:body }}
: Should be right after the<body>
opening tag{{ findable:footer }}
: Should be right before the</body>
tag
Example layout.antlers.html
:
<head>
...
{{ findable:head }}
</head>
<body>
{{ findable:body }}
...
{{ findable:footer }}
</body>
Findable is open-sourced software licensed under the MIT license.