diff --git a/README.md b/README.md
index 15841cf3a..6868188d3 100644
--- a/README.md
+++ b/README.md
@@ -17,30 +17,37 @@ This Hugo theme was ported from [Bootstrapious](http://bootstrapious.com/p/unive
## Table of Contents
-* [Features](#features)
-* [Installation](#installation)
-* [Configuration](#configuration)
- * [Style](#style)
- * [Comments](#comments)
- * [Google Analytics](#google-analytics)
- * [Contact form](#contact-form)
- * [Menu](#menu)
- * [Sidebar widgets](#sidebar-widgets)
- * [Blog post thumbnails](#blog-post-thumbnails)
- * [Top bar](#top-bar)
- * [Landing page](#landing-page)
- * [Carousel](#carousel)
- * [Features](#features)
- * [Testimonials](#testimonials)
- * [See more](#see-more)
- * [Clients](#clients)
- * [Recent posts](#recent-posts)
- * [Footer](#footer)
- * [Meta tags](#meta-tags)
-* [Usage](#usage)
-* [Contributing](#contributing)
-* [License](#license)
-* [Thanks](#thanks)
+- [Universal Theme for Hugo](#universal-theme-for-hugo)
+ - [Table of Contents](#table-of-contents)
+ - [Features](#features)
+ - [Installation](#installation)
+ - [Configuration](#configuration)
+ - [Language](#language)
+ - [Style](#style)
+ - [Comments](#comments)
+ - [Google Analytics](#google-analytics)
+ - [Logo](#logo)
+ - [Contact form](#contact-form)
+ - [Menu](#menu)
+ - [Sidebar widgets](#sidebar-widgets)
+ - [Top bar](#top-bar)
+ - [Blog post thumbnails](#blog-post-thumbnails)
+ - [Landing page](#landing-page)
+ - [Carousel](#carousel)
+ - [Features](#features-1)
+ - [Testimonials](#testimonials)
+ - [See more](#see-more)
+ - [Clients](#clients)
+ - [Recent posts](#recent-posts)
+ - [Footer](#footer)
+ - [About us](#about-us)
+ - [Recent posts](#recent-posts-1)
+ - [Contact](#contact)
+ - [Meta tags](#meta-tags)
+ - [Usage](#usage)
+ - [Contributing](#contributing)
+ - [License](#license)
+ - [Thanks](#thanks)
## Features
@@ -377,9 +384,10 @@ description: >
Easily to change fonts
image: "img/carousel/template-easy-code.png"
+href: "https://devcows.github.io/hugo-universal-theme/"
```
-The `weight` field determines the position of the entry. `title` is a text-only field. The `description` field accepts HTML code. And the `image` must contain the relative path to the image inside the `static` directory.
+The `weight` field determines the position of the entry. `title` is a text-only field. The `description` field accepts HTML code. The `image` must contain the relative path to the image inside the `static` directory. The optional `href` field contains a relative or absolute url that the user will be redirected to when clicking the carousel (specific to each carousel item).
Once the carousel is configured, some options can be defined like: auto play, speed, etc. in the `config.toml` file.
diff --git a/exampleSite/data/carousel/customizable.yaml b/exampleSite/data/carousel/customizable.yaml
index 6112d05af..29fbdc9f4 100644
--- a/exampleSite/data/carousel/customizable.yaml
+++ b/exampleSite/data/carousel/customizable.yaml
@@ -6,3 +6,4 @@ description: >
Easily to change fonts
image: "img/carousel/template-easy-code.png"
+href: "https://devcows.github.io/hugo-universal-theme/"
diff --git a/exampleSite/data/carousel/features.yaml b/exampleSite/data/carousel/features.yaml
index 8b30ab2c5..f5db1b1b5 100644
--- a/exampleSite/data/carousel/features.yaml
+++ b/exampleSite/data/carousel/features.yaml
@@ -8,3 +8,4 @@ description: >
+ 11 extra pages showing template features
image: "img/carousel/template-mac.png"
+href: "faq"
diff --git a/layouts/partials/carousel.html b/layouts/partials/carousel.html
index be6c6f005..a329dc28a 100644
--- a/layouts/partials/carousel.html
+++ b/layouts/partials/carousel.html
@@ -10,15 +10,21 @@
data-pagination-speed="{{ default 1000 .Site.Params.CarouselHomepage.pagination_speed }}">
{{ range sort .Site.Data.carousel "weight" }}
-
-
+ {{ if .href }}
+
+ {{ end }}
{{ end }}