From d5bb44b0e24061d7f99018a676704d9eb3249cf0 Mon Sep 17 00:00:00 2001 From: zenn Date: Mon, 13 Apr 2026 15:38:10 +0900 Subject: [PATCH] =?UTF-8?q?v0.1.5=20=ED=8C=A8=ED=82=A4=EC=A7=80=20?= =?UTF-8?q?=EA=B2=BD=EA=B3=A0=20=EB=B0=8F=20=EA=B0=9C=EB=B0=9C=20=EC=B6=9C?= =?UTF-8?q?=EB=A0=A5=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/built/screen.css | 17 ++++++++++++++++- package.json | 15 +++++++++------ 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/assets/built/screen.css b/assets/built/screen.css index df29f82..cbfb5d3 100644 --- a/assets/built/screen.css +++ b/assets/built/screen.css @@ -49,11 +49,26 @@ body { margin: 0; background: var(--bg); color: var(--text); - font-family: var(--font-sans); + font-family: var(--gh-font-body, var(--font-sans)); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } +h1, +h2, +h3, +h4, +h5, +h6, +.gh-content h1, +.gh-content h2, +.gh-content h3, +.gh-content h4, +.gh-content h5, +.gh-content h6 { + font-family: var(--gh-font-heading, var(--font-sans)); +} + a { color: inherit; text-decoration: none; diff --git a/package.json b/package.json index 4b5360b..24cbd8e 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,20 @@ { "name": "ghost-theme-thred-clone", - "version": "0.1.4", + "version": "0.1.5", "private": true, "description": "A Ghost theme inspired by the Thred reference layout.", + "keywords": [ + "ghost-theme", + "ghost", + "theme" + ], "author": { "name": "zenn", "email": "zenn.message@gmail.com" }, - "engines": { - "ghost-api": "v5" - }, "config": { "posts_per_page": 10, + "card_assets": true, "image_sizes": { "xxs": { "width": 30 @@ -72,8 +75,8 @@ "dev:sync": "sh ./scripts/sync-theme.sh", "dev:seed": "node ./scripts/build-sample-content.js", "dev:seed:zip": "npm run dev:seed && cd seed && zip -q -r thred-inspired-sample-content.ghost.zip thred-inspired-sample-content.ghost.json", - "dev:ghost:start": "npm run dev:sync && docker compose up -d", - "dev:ghost:restart": "npm run dev:sync && docker compose restart ghost", + "dev:ghost:start": "npm run dev:sync && docker compose up -d && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\n\\n'", + "dev:ghost:restart": "npm run dev:sync && docker compose restart ghost && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\n\\n'", "dev:ghost:stop": "docker compose down", "zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'" }