Skip to content

Files

Latest commit

 

History

History

special-layout

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 20, 2019
layout
SpecialLayout

Example

This is markdown content rendered inside a special layout component. We have specified the name of a special layout in yaml front matter, which tells VuePress to render the content of this page using the component of the same name. This layout component can be found here: .vuepress/components/SpecialLayout.vue.

---
layout: SpecialLayout
---

Notice how only the layout has changed, not the general styles. This is because we are still using the default theme, but with a custom layout instead of the default one.

To learn more, please read the official documentation on custom page layouts.