Files
nl-blogs/examples/custom-template-demo/layout.json
2026-08-24 13:06:04 +08:00

62 lines
1.2 KiB
JSON

{
"id": "page",
"type": "layout",
"className": "demo-page",
"styles": {
"maxWidth": "1100px",
"margin": "0 auto",
"minHeight": "100vh",
"background": "#faf9f5"
},
"blocks": [
{
"id": "hdr",
"type": "header",
"bindings": { "title": "settings.site_title" }
},
{
"id": "navi",
"type": "nav",
"bindings": {
"links": [
{ "label": "首页", "href": "/" },
{ "label": "博客", "href": "/blog" },
{ "label": "作品", "href": "/works" },
{ "label": "关于", "href": "/about" }
]
}
},
{
"id": "hero1",
"type": "hero",
"bindings": {
"title": "settings.site_title",
"subtitle": "settings.site_description",
"buttonText": "进入博客",
"buttonHref": "/blog"
}
},
{
"id": "div1",
"type": "divider"
},
{
"id": "pl",
"type": "post_list",
"bindings": {
"source": "posts",
"pageSize": "5",
"emptyText": "暂无文章"
},
"styles": {
"padding": "1.5rem"
}
},
{
"id": "ftr",
"type": "footer",
"bindings": { "text": "settings.footer_icp" }
}
]
}