27 lines
839 B
Python
27 lines
839 B
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Default Theme',
|
|
'description': 'Default website theme',
|
|
'category': 'Theme',
|
|
'sequence': 1000,
|
|
'version': '1.0',
|
|
'depends': ['website'],
|
|
'data': [
|
|
'data/generate_primary_template.xml',
|
|
],
|
|
'images': [
|
|
'static/description/cover.png',
|
|
'static/description/theme_default_screenshot.jpg',
|
|
],
|
|
'configurator_snippets': {
|
|
'homepage': ['s_cover', 's_text_image', 's_numbers'],
|
|
'about_us': ['s_text_image', 's_image_text', 's_title', 's_company_team'],
|
|
'our_services': ['s_three_columns', 's_quotes_carousel', 's_references'],
|
|
'pricing': ['s_comparisons'],
|
|
'privacy_policy': ['s_faq_collapse'],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|