Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ae3b944

Browse files
committedJul 14, 2017
move readme to docs folder because SEO
1 parent 3ba744c commit ae3b944

File tree

3 files changed

+50
-50
lines changed

3 files changed

+50
-50
lines changed
 

‎README.md

-50
This file was deleted.

‎docs/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# Jekyll SEO Tag
12

3+
A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content.
4+
5+
[![Gem Version](https://badge.fury.io/rb/jekyll-seo-tag.svg)](https://badge.fury.io/rb/jekyll-seo-tag) [![Build Status](https://travis-ci.org/jekyll/jekyll-seo-tag.svg)](https://travis-ci.org/jekyll/jekyll-seo-tag)
6+
7+
## What it does
8+
9+
Jekyll SEO Tag adds the following meta tags to your site:
10+
11+
* Page title, with site title or description appended
12+
* Page description
13+
* Canonical URL
14+
* Next and previous URLs on paginated pages
15+
* [JSON-LD Site and post metadata](https://developers.google.com/structured-data/) for richer indexing
16+
* [Open Graph](http://ogp.me/) title, description, site title, and URL (for Facebook, LinkedIn, etc.)
17+
* [Twitter Summary Card](https://dev.twitter.com/cards/overview) metadata
18+
19+
While you could theoretically add the necessary metadata tags yourself, Jekyll SEO Tag provides a battle-tested template of crowdsourced best-practices.
20+
21+
## What it doesn't do
22+
23+
Jekyll SEO tag is designed to output machine-readable metadata for search engines and social networks to index and display. If you're looking for something to analyze your Jekyll site's structure and content (e.g., more traditional SEO optimization), take a look at [The Jekyll SEO Gem](https://github.com/pmarsceill/jekyll-seo-gem).
24+
25+
Jekyll SEO tag isn't designed to accommodate every possible use case. It should work for most site out of the box and without a laundry list of configuration options that serve only to confuse most users.
26+
27+
## Documentation
28+
29+
For more information, see:
30+
31+
* [Installation](installation.md)
232
* [Usage](usage.md)
333
* [Advanced usage](advanced-usage.md)

‎docs/installation.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Installing Jekyll SEO Tag
2+
3+
2. 1. Add the following to your site's `Gemfile`:
4+
5+
```ruby
6+
gem 'jekyll-seo-tag'
7+
```
8+
9+
2. Add the following to your site's `_config.yml`:
10+
11+
```yml
12+
gems:
13+
- jekyll-seo-tag
14+
```
15+
16+
3. Add the following right before `</head>` in your site's template(s):
17+
18+
```liquid
19+
{% seo %}
20+
```

0 commit comments

Comments
 (0)
Failed to load comments.