initial commit

This commit is contained in:
shafin-r
2025-07-03 01:43:25 +06:00
commit 5dc53b896e
279 changed files with 28956 additions and 0 deletions

236
newspaper/package.json Normal file
View File

@ -0,0 +1,236 @@
{
"name": "newspaper",
"description": "Newspaper is a Ghost theme merging old-school newspaper charm with sleek modern design. Ideal for news sites, it embodies traditional journalism with a contemporary, engaging user experience.",
"demo": "https://newspaper.kusa-projects.com/",
"version": "1.1.1",
"private": true,
"engines": {
"ghost": ">=5.0.0"
},
"author": {
"name": "KUSA Projects",
"email": "kusaprojects.agency@gmail.com",
"url": "https://www.kusa-projects.com/"
},
"gpm": {
"type": "theme",
"categories": [
"News"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"docs": "https://www.kusa-projects.com/newspaper-documentation",
"config": {
"posts_per_page": 8,
"image_sizes": {
"xxs": {
"width": 100
},
"xs": {
"width": 150
},
"s": {
"width": 320
},
"xm": {
"width": 440
},
"m": {
"width": 600
},
"l": {
"width": 960
},
"xl": {
"width": 1200
},
"xxl": {
"width": 2000
}
},
"card_assets": {
"exclude": [
"toggle",
"button",
"header",
"blockquote",
"audio",
"bookmark",
"callout",
"file",
"gallery",
"product",
"signup"
]
},
"custom": {
"background_color": {
"type": "color",
"default": "#F6F6F6"
},
"text_color": {
"type": "color",
"default": "#222222"
},
"fonts": {
"type": "text",
"default": "Open Sans, EB Garamond, Roboto Condensed",
"description": "This setting allows you to add 4 different Google Fonts and only applies if the Heading font and Body font are not specified in the brand settings. Instructions in our docs."
},
"use_custom_pages": {
"type": "select",
"options": [
"All Custom Pages",
"Only Account Pages",
"None"
],
"default": "All Custom Pages"
},
"social_urls": {
"type": "text",
"default": "instagram: https://www.google.com/, linkedin: https://www.google.com/, pinterest: https://www.google.com/",
"description": "This setting allows you to add Instagram, Linkedin and Pinterest URLs. Instructions in our docs."
},
"logo_scale": {
"type": "select",
"options": [
"0.2",
"0.4",
"0.6",
"0.8",
"1",
"1.2",
"1.4",
"1.6",
"1.8",
"2",
"2.4",
"2.8",
"3.2",
"3.6",
"4"
],
"default": "1"
},
"announcement_bar_type": {
"type": "select",
"options": [
"Normal",
"Moving Several News",
"Moving One News",
"Static"
],
"default": "Moving Several News"
},
"card_heading_style": {
"type": "select",
"options": [
"uppercase",
"capitalize",
"lowercase",
"none"
],
"default": "uppercase"
},
"image_style": {
"type": "select",
"options": [
"Normal",
"Grayscale",
"Tinted"
],
"default": "Normal"
},
"use_initials": {
"type": "boolean",
"default": false
},
"use_newsletter_on_homepage_and_post_sidebar": {
"type": "boolean",
"default": true
},
"featured_tags_on_homepage": {
"type": "text",
"default": "",
"description": "Please use tag slugs separated by comma. Example: politics, business"
},
"tag_page_layout": {
"type": "select",
"options": [
"Column",
"Simple"
],
"default": "Column"
},
"author_page_layout": {
"type": "select",
"options": [
"Column",
"Author Image Left",
"Author Image Right",
"Simple"
],
"default": "Column"
},
"account_page_layout": {
"type": "select",
"options": [
"All Data Layout",
"All Data Layout No Subscribe Button",
"Simple Layout",
"Simple Layout No Subscribe Button"
],
"default": "All Data Layout"
},
"formspree_hash_id": {
"type": "text",
"default": "xxxxxxxx"
},
"post_header_type": {
"type": "select",
"options": [
"Wide",
"Narrow",
"Featured Image Left",
"Featured Image Right"
],
"default": "Narrow",
"group": "post"
},
"use_sidebar": {
"type": "boolean",
"default": false,
"group": "post"
},
"sidebar_content": {
"type": "select",
"options": [
"Featured Articles",
"Table Of Contents"
],
"default": "Featured Articles",
"group": "post",
"visibility": "use_sidebar:true"
},
"sidebar_position": {
"type": "select",
"options": [
"Left",
"Right"
],
"default": "Right",
"group": "post",
"visibility": "use_sidebar:true+post_header_type:[Wide, Narrow]"
}
}
},
"type": "module",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-zip": "^6.0.0"
}
}