added sitepins cms settings

This commit is contained in:
Somrat
2025-11-30 15:11:47 +06:00
parent c10f052bb0
commit cf6bcfee6c
4 changed files with 147 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"media": {
"root": "public/images",
"public": "public"
},
"content": {
"root": "src/content"
},
"code": {
"root": "src/layouts"
},
"themeConfig": [
"src/config"
],
"arrangement": [],
"showCommitModal": true
}
+57
View File
@@ -0,0 +1,57 @@
{
"file": "src/content/authors/john-doe.md",
"name": "authors",
"fileType": "md",
"fmType": "yaml",
"template": [
{
"label": "Title",
"name": "title",
"type": "string",
"value": ""
},
{
"label": "Email",
"name": "email",
"type": "string",
"value": ""
},
{
"label": "Image",
"name": "image",
"type": "media",
"value": ""
},
{
"label": "Description",
"name": "description",
"type": "string",
"value": ""
},
{
"label": "Social",
"name": "social",
"type": "Array",
"fields": [
{
"label": "Name",
"name": "name",
"type": "string",
"value": ""
},
{
"label": "Icon",
"name": "icon",
"type": "string",
"value": ""
},
{
"label": "Link",
"name": "link",
"type": "string",
"value": ""
}
]
}
]
}
+72
View File
@@ -0,0 +1,72 @@
{
"file": "src/content/blog/post-2.md",
"name": "blog",
"fileType": "md",
"fmType": "yaml",
"template": [
{
"name": "title",
"label": "Title",
"type": "string",
"value": "",
"defaultValue": ""
},
{
"name": "meta_title",
"label": "Meta Title",
"type": "string",
"value": "",
"defaultValue": ""
},
{
"name": "description",
"label": "Description",
"type": "string",
"value": "",
"defaultValue": ""
},
{
"name": "date",
"label": "Date",
"type": "Date",
"value": "",
"defaultValue": "",
"alwaysUseCurrentDate": false
},
{
"name": "image",
"label": "Image",
"type": "media",
"value": "",
"defaultValue": ""
},
{
"name": "categories",
"label": "Categories",
"type": "Array",
"value": [],
"defaultValue": ""
},
{
"name": "author",
"label": "Author",
"type": "string",
"value": "",
"defaultValue": ""
},
{
"name": "tags",
"label": "Tags",
"type": "Array",
"value": [],
"defaultValue": ""
},
{
"name": "draft",
"label": "Draft",
"type": "boolean",
"value": false,
"defaultValue": ""
}
]
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "astroplate",
"version": "5.8.2",
"version": "5.9.0",
"description": "Astro and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",