elaniin/findable

An SEO add-on for Statamic.

Installs: 1 378

Dependents: 0

Suggesters: 0

Security: 0

Stars: 13

Watchers: 4

Forks: 1

Open Issues: 0

Type:statamic-add-on

1.1.4 2022-01-27 22:24 UTC

This package is auto-updated.

Last update: 2024-03-28 03:20:03 UTC


README

Findable Logo

Total Downloads Total Downloads Latest Stable Version License

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.