# Status
You can specify status text like the top of this document.
# Global Status
Specify global status via themeConfig.status
:
// .vuepress/config.js
module.exports = {
theme: "vt",
themeConfig: {
status: 'This is global status'
},
};
# Page Status
Specify page status via frontmatter.status (opens new window):
---
status: 'This is page status'
---
# Rich-text page status
You can specify rich-text page status via markdown slot (opens new window).
Note that you'll need declare frontmatter.status (opens new window) to $variable
to tell VT to leverage corresponding slot:
---
status: $status
---
::: status
This is page status, [jump to home page](/)
:::