Skip to content

elaniin/findable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.