--- title: Layouts description: placeholder permalink: /docs/layouts/ --- Layouts are templates that wrap around your content. They allow you to have the source code for your template in one place so you don't have to repeat things like your navigation and footer on every page. Layouts live in the `_layouts` directory. The convention is to have a base template called `default.html` and have other layouts [inherit](#inheritance) from this as needed.
Layouts Directory

Jekyll looks for the _layouts directory either at the root of your site's source or at the root of your theme.

While you can configure the directory name in which your layouts can reside by setting the layouts_dir key in your config file, the directory itself should be located at the root of your site's source directory.

## Usage The first step is to put the template source code in `default.html`. `content` is a special variable, the value is the rendered content of the post or page being wrapped. {% raw %} ```liquid {{ page.title }}

{{ page.title }}

{{ content }}
``` {% endraw %} You have full access to the front matter of the origin. In the example above, `page.title` comes from the page front matter. Next you need to specify what layout you're using in your page's front matter. You can also use [front matter defaults](/docs/configuration/front-matter-defaults/) to save you from having to set this on every page. ```markdown --- title: My First Page layout: default --- This is the content of my page ``` The rendered output of this page is: ```html My First Page

My First Page

This is the content of my page
``` ## Inheritance Layout inheritance is useful when you want to add something to an existing layout for a portion of documents on your site. A common example of this is blog posts, you might want a post to display the date and author but otherwise be identical to your base layout. To achieve this you need to create another layout which specifies your original layout in front matter. For example this layout will live at `_layouts/post.html`: {% raw %} ```liquid --- layout: default ---

{{ page.date }} - Written by {{ page.author }}

{{ content }} ``` {% endraw %} Now posts can use this layout while the rest of the pages use the default. ## Variables You can set front matter in layouts, the only difference is when you're using in Liquid, you need to use the `layout` variable instead of `page`. For example: {% raw %} ```liquid --- city: San Francisco ---

{{ layout.city }}

{{ content }} ``` {% endraw %}