diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..f331cf7 --- /dev/null +++ b/__init__.py @@ -0,0 +1,2 @@ +# -*- encoding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..df5fc3e --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,26 @@ +# -*- 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', +} diff --git a/data/generate_primary_template.xml b/data/generate_primary_template.xml new file mode 100644 index 0000000..c4e0dd3 --- /dev/null +++ b/data/generate_primary_template.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/static/description/cover.png b/static/description/cover.png new file mode 100644 index 0000000..ad75328 Binary files /dev/null and b/static/description/cover.png differ diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000..7f2db2a Binary files /dev/null and b/static/description/icon.png differ diff --git a/static/description/theme_default_screenshot.jpg b/static/description/theme_default_screenshot.jpg new file mode 100644 index 0000000..e0edb58 Binary files /dev/null and b/static/description/theme_default_screenshot.jpg differ