--- layout: page-fullwidth title: "Theme Documentation" subheadline: "How to use Feeling Responsive" description: "The documentation is a work in progress..." permalink: "/documentation/" header: image_fullwidth: "header_roadmap_2.jpg" ---
## Images: Title, Thumbnails, Homepage {#images}
There are several types of images you can define via front matter. If you want to change the images used in the header have a look at [Style your Header]({{ site.url }}/headers/).
### Title Images
~~~
image:
title: thumbnail_image.jpg
~~~
### Thumbnails
Thumbnails are used on archive pages like the [blog index][2]. They have a size of 150x150 pixels. Define them in front matter like this:
~~~
image:
thumb: thumbnail_image.jpg
~~~
### Homepage Image
If you want to feature an article on the homepage with a huge image, than use the homepage image with a width of 970 pixels. If no homepage image is defined *Feeling Responsive* writes instead *New Blog Articles* over the blog entries. Define the homepage image like this:
~~~
image:
homepage: header_homepage_13.jpg
~~~
### Credits with URL
Sometimes you want to give credit to the creator of your images, maybe with a link. Especially when you use Creative Commons-images like I do for this website. Just add the following front matter and *Feeling Responsive* does the rest:
~~~
image:
title: header_image.jpg
credit: Image by Phlow
url: "http://phlow.de/"
~~~
### Define all images for an article
~~~
image:
title: title_image.jpg
thumb: thumbnail_image.jpg
homepage: header_homepage_13.jpg
credit: Image by Phlow
url: "http://phlow.de/"
~~~
[Up to table of contents](#toc)
{: .text-right }
## Create a Table of Content
{: .t60}
With the Kramdown parser for Markdown you can render a table of contents for your documents. Just insert the following HTML in your post before the actual content. More information on [»Automatic ›Table of Contents‹ Generation«][1].
### Bare Bones Version
{% highlight html %}
### Table of Contents
* Auto generated table of contents
{:toc}
{% endhighlight %}
### Foundation panel version
{% highlight html %}