blog/themes/icarus/include/schema/common/navbar.json

40 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/common/navbar.json",
"description": "Page top navigation bar configurations",
"type": "object",
"properties": {
"menu": {
"type": "object",
"description": "Navigation menu items",
"patternProperties": {
".+": {
"type": "string",
"description": "URL or path of the menu link"
}
},
"examples": [
{
"Home": "/",
"Archives": "/archives",
"Categories": "/categories",
"Tags": "/tags",
"About": "/about"
}
],
"nullable": true
},
"links": {
"$ref": "/misc/poly_links.json",
"description": "Links to be shown on the right of the navigation bar",
"examples": [
{
"Download on GitHub": {
"icon": "fab fa-github",
"url": "https://github.com/ppoffice/hexo-theme-icarus"
}
}
]
}
}
}