elaniin / findable
An SEO add-on for Statamic.
Installs: 1 387
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 4
Forks: 1
Open Issues: 0
Type:statamic-add-on
Requires
- spatie/laravel-sitemap: ^5.9
Requires (Dev)
README
Improve SEO in your Statamic-powered site!
✨ Features
- 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
💿 Installation
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>
🔒 License
Findable is open-sourced software licensed under the MIT license.