Adding Simple SEO for Octopress
Adding Meta Tag, Keywords and Descriptions for your Octopress Blog
I just started using Octopress, seems it is quite simple to setup. However, the default template doesn’t provide the fields for your site, your post, or your pages. After a google search, seems it is quite easy to setup.
The main Octopress Site
Description
Meta tag Description
is aleady in config file _config.yml
. However, to show it in the main site. You have to modify the file source/_includes/head.html
.
|
Keywords
We have to add meta tag keywords
is in config file _config.yml
ourselves. We also need to modify the file source/_includes/head.html
again for this change.
|
|
New Post
The default template for creating new post or pages doesn’t provide you the meta tag Description
and keywords
. We can add it in the RakeFile.
|