--- title: Frontmatter and keys blurb: Examine all of the different frontmatter keys and their use in a single location. layout: template-logo-medium --- <%= md_links %> <%= md_images %> <%= current_page.data.title %> ============================== <%= current_page.data.blurb %> Frontmatter ----------- Frontmatter is metadata that is included at the top of every content page but will not be present in the output. It is used to provide information to _Middleman_ and _Middlemac_ on a page by page and group basis. Here is the frontmatter from this very page’s source file: ~~~ yaml --- title: Frontmatter and keys blurb: Examine all of the different frontmatter keys and their use in a single location. layout: template-logo-medium --- ~~~ You can also specify your own frontmatter keys and values. All frontmatter is available for use in your pages and templates via `current_page.data`, e.g., `current_page.data.title`. Also know that if you want to style content that will be rendered to HTML in the frontmatter, such as in a blurb, then HTML is required. HAML and Markdown do not touch content in the frontmatter. For example, if you want to emphasize text in a blurb, you will have do to something like this example: ~~~ yaml blurb: I must emphasize that going to war with an empty treasury is bad. ~~~ Middlemac Frontmatter Keys -------------------------- `title` : The page title will be used in to the HTML `