__manifest__.py 764 B

123456789101112131415161718192021222324
  1. # -*- encoding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Default Theme',
  5. 'description': 'Default website theme',
  6. 'category': 'Theme',
  7. 'sequence': 1000,
  8. 'version': '1.0',
  9. 'depends': ['website'],
  10. 'images': [
  11. 'static/description/cover.png',
  12. 'static/description/theme_default_screenshot.jpg',
  13. ],
  14. 'snippet_lists': {
  15. 'homepage': ['s_cover', 's_text_image', 's_numbers'],
  16. 'about_us': ['s_text_image', 's_image_text', 's_title', 's_company_team'],
  17. 'our_services': ['s_three_columns', 's_quotes_carousel', 's_references'],
  18. 'pricing': ['s_comparisons'],
  19. 'privacy_policy': ['s_faq_collapse'],
  20. },
  21. 'license': 'LGPL-3',
  22. }