Adding SEO to Jekyll Site
To provide more information to search engines, I’ve used jekyll-seo-tag
plugin.
Before activating the plugin, I’ve checked my site with the SEO-audit tool SEOSiteCheckup. Here’s the summary of the audit:
Several errors relate to missing <meta>
tags:
The jekyll-seo-tag
plugin renders <meta>
tags that help search engines to better describe your page. Additionally, it adds <meta>
tags specific to social networks. All this make your pages more accessible for your visitors.
The installation process is simple and described on the home page of the plugin. The jekyll-seo-tag
plugin is supported by GitHub Pages, so it’ll work if you’re using GitHub Pages to host your site.
Additionally, I’ve edited required values in the _config.yml
file, such as title
, author
, description
, and twitter:username
.
After the plugin activation, <meta>
tags got added to pages. For example, for Adding Google Analytis to Jekyll Site post the following tags have been added:
You can find the descriptio of tags added at the plugins page.
Here’s the second run of the audit tool after the plugin actiovation:
As you can see it got better. There’s much more to SEO than providing <meta>
tags, but that would be enough for me for now. You can check your site in the same way to see where your site stands.
If you want to get more information about SEO and how to improve your site pages visibility, check these articles:
- The beginners guide to SEO;
- The Essential Meta Tags for Social Media;
- SEO Site Checkup—online tool that audits your site and provides advice on how to improve it.