diff --git a/README.md b/README.md
index d244031..8c139b5 100644
--- a/README.md
+++ b/README.md
@@ -23,13 +23,14 @@ Now add this in the _includes/head.html file, under the main css and enjoy your
## Post Options
-All the post, require an image and maybe an author, the image are used in the cards and the autor used for the footer in the cards. For use the images and author, just add a new key in the post config, something like this:
+All the post, require an image and maybe an author and declare if the post is highlighted or not, the image are used in the cards and the autor used for the footer in the cards, the highlighted post is used for make this 12 cols and not a card, if you want to use the custom images and set the author and the highlight post, just add a new key in the post config, something like this:
---
layout: post
title: "Welcome to jekyll-mdl"
date: 2015-07-11 11:34:20
categories: jekyll
+ highlight: true
image: http://www.wchs4pets.org/wp-content/uploads/2015/03/cat_1-jpg.jpg
author: Google Developers Group Managua
---
diff --git a/_includes/highlight_post.html b/_includes/highlight_post.html
deleted file mode 100644
index 2ee8622..0000000
--- a/_includes/highlight_post.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% assign post = site.posts.first %}
-
diff --git a/_posts/2015-10-11-google-developers-group.markdown b/_posts/2015-10-11-google-developers-group.markdown
index ec2c5e6..451946a 100644
--- a/_posts/2015-10-11-google-developers-group.markdown
+++ b/_posts/2015-10-11-google-developers-group.markdown
@@ -3,6 +3,7 @@ layout: post
title: "Google Developers Group"
date: 2015-10-11 04:34:20
categories: GDG
+highlight: true
image: http://4.bp.blogspot.com/-IOD6VutWGlA/UW8Jq05M0DI/AAAAAAAAAeA/OVckWFybKqg/s1600/DSC01317.JPG
---
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris sit amet orci.
diff --git a/index.html b/index.html
index 2ffc2c7..d1965e9 100644
--- a/index.html
+++ b/index.html
@@ -5,9 +5,35 @@ layout: default
{% if site.post_type == 'highlight' %}
- {% include highlight_post.html %}
+ {% for post in site.posts %}
+ {% if post.highlight %}
- {% for post in site.posts offset:1 %}
+