28 lines
918 B
Python
28 lines
918 B
Python
{
|
|
'name': 'Chennora Theme',
|
|
'description': 'Custom theme for Chennora website',
|
|
'category': 'Theme/Website',
|
|
'version': '1.0',
|
|
'author': 'Your Company',
|
|
'depends': ['website', 'website_sale', 'website_crm'],
|
|
'data': [
|
|
'views/layout.xml', # Header, Footer, and Global Layout changes
|
|
'views/pages.xml', # specific page content (Home, About, etc.)
|
|
'views/snippets.xml', # Custom Building Blocks
|
|
'views/options.xml', # Options for snippets (if any)
|
|
'data/website_data.xml', # Data for creating pages
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'theme_chennora/static/src/scss/primary_variables.scss',
|
|
'theme_chennora/static/src/scss/theme.scss',
|
|
],
|
|
},
|
|
'images': [
|
|
'static/description/cover.png',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|