v0.1.1 테마 구성 및 레이아웃 수정

This commit is contained in:
2026-04-13 10:35:20 +09:00
commit 890b3c1902
31 changed files with 1813 additions and 0 deletions

73
package.json Normal file
View File

@@ -0,0 +1,73 @@
{
"name": "ghost-theme-thred-clone",
"version": "0.1.1",
"private": true,
"description": "A Ghost theme inspired by the Thred reference layout.",
"author": {
"name": "OpenAI Codex",
"email": "support@openai.com"
},
"engines": {
"ghost-api": "v5"
},
"config": {
"posts_per_page": 10,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
},
"custom": {
"footer_primary_link": {
"type": "text",
"default": "Portal"
},
"footer_primary_url": {
"type": "text",
"default": "/"
},
"footer_secondary_link": {
"type": "text",
"default": "Docs"
},
"footer_secondary_url": {
"type": "text",
"default": "/"
},
"footer_tertiary_link": {
"type": "text",
"default": "Get theme"
},
"footer_tertiary_url": {
"type": "text",
"default": "/"
},
"footer_quaternary_link": {
"type": "text",
"default": "Changelog"
},
"footer_quaternary_url": {
"type": "text",
"default": "/"
}
}
},
"scripts": {
"zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'"
}
}