Socket
Socket
Sign inDemoInstall

eleventy-plugin-seo

Package Overview
Dependencies
1
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eleventy-plugin-seo

Eleventy plugin to generate meta tags for improved SEO.


Version published
Maintainers
1
Created

Readme

Source

About Eleventy Plugin SEO

An Eleventy plugin to generate meta tags for improved SEO using the Liquid templating engine.

GitHub Actions codecov Maintainability GitHub Actions code style: prettier

I wrote this plugin when moving from Jekyll to Eleventy to get the functionality I previously had with Jekyll SEO Tag.

Features

  • Page title with styling options and pagination.
  • Page description.
  • Canonical URL.
  • Robots meta directive for pagination.
  • Author meta directive.

Installation

Available on npm:

npm install eleventy-plugin-seo --save

Add the plugin to .eleventy.js:

const pluginSEO = require("eleventy-plugin-seo");

module.exports =  function(eleventyConfig) {
  eleventyConfig.addPlugin(pluginSEO, require("./src/_data/seo.json"));
};

Usage

Add the following right before </head> in your site's template(s):

{% seo %}

Done!

Front Matter

The plugin uses these front matters when available:

---
title:   Some page title
excerpt: Some page excerpt
author:  Jane Doe
---

Config

Pass in an object with config options to the plugin:

eleventyConfig.addPlugin(pluginSEO, {
  title: "Foobar Site",
  description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
  url: "https://foo.com",
  author: "Jane Doe"
});

Alternatively keep the options in an external file and require it:

eleventyConfig.addPlugin(pluginSEO, require("./src/_data/seo.json"));

title

Uses the title in front matter and by default the site title gets appended to the page title, page title - site title. Page with page number gets appended to the page title when paginated.

See options for customization.

description

Uses front matter excerpt to generate the description. If no excerpt is set for a page it falls back on using the site description in the config.

url

Full URL to the site without trailing slash, https://foo.com.

author

Full name of the site author, Jane Doe. Can be overridden on a per page basis using author in front matter.

Options

The behavior of the output can be controlled via an options object that can be passed in with the config.

eleventyConfig.addPlugin(pluginSEO, {
  title: "Foobar Site",
  ...
  options: {
    titleStyle: "minimalistic",
    titleDivider: "|"
  }
});
titleStyle

Setting the style to minimalistic removes the appending of the site title to all title strings.

titleDivider

Changes the divider between elements in the title output from - to any custom character or string.

Additional Tags

While adding the {% seo %} tag is all that is needed, the plugin defines more liquid tags that it uses internally that can be convenient to use in other places.

The following liquid tags are supplied by the plugin.

pageTitle

Generates the title for a page.

{% pageTitle %}

pageDescription

Generates the description for a page.

{% pageDescription %}

canonicalURL [url]

Generates the canonical URL for the current page or for another page if passing in an argument.

{% canonicalURL %}
{% canonicalURL /feed.xml %}
{% canonicalURL post.url %}

Use without arg to canonical url for current page:

<link rel="canonical" href="{% canonicalURL %}">

Use with arg to link to a specific page, like feed.xml:

<link type="application/atom+xml" rel="alternate" href="{% canonicalURL /feed.xml %}" title="{{ site.title }}" >

Use with Eleventy provided variables, like page.url that resolves to an url in places like...

...feed.liquid:

{% for post in collections.posts limit: 10 %}
  ...
  <link>{% canonicalURL post.url %}</link>
  ...
{% endfor %}

...sitemap.liquid:

{% for item in collections.all %}
  ...
  <loc>{% canonicalURL item.url %}</loc>
  ...
{% endfor %}

metaAuthor

Outputs the full name of the author for the current page.

{% metaAuthor %}

metaRobots

Adds robots meta directive with index,follow except on paginated pages which gets noindex,follow.

{% metaRobots %}

Keywords

FAQs

Last updated on 26 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc