mind-overflow-website-ghost.../package.json
Lorenzo Dellacà e899839211 Implement more image resizing, fix responsiveness
- Two new image sizes have been added: xl and xxl.
- Image resizing has been implemented in featured images.
- Some elements were not responsive, such as the link preview and code block.
2020-11-06 17:35:02 +01:00

43 lines
886 B
JSON
Executable File

{
"name": "mindtheme",
"description": "Mind Overflow's official website style",
"version": "0.0.9",
"engines": {
"ghost-api": "v3"
},
"keywords": [
"ghost-theme"
],
"license": "Copyright",
"author": {
"name": "Lorenzo Dellacà",
"email": "lorenzo.dellaca@mind-overflow.net"
},
"config": {
"posts_per_page": 10,
"image_sizes": {
"xxs": {
"width": 64
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1200
},
"xl": {
"width": 1600
},
"xxl": {
"width": 2000
}
}
}
}