diff --git a/theme_zap/__manifest__.py b/theme_zap/__manifest__.py index 1b2b701ca..c1e054b9e 100644 --- a/theme_zap/__manifest__.py +++ b/theme_zap/__manifest__.py @@ -12,16 +12,30 @@ 'views/images_library.xml', 'views/snippets/s_banner.xml', + 'views/snippets/s_call_to_action.xml', 'views/snippets/s_color_blocks_2.xml', + 'views/snippets/s_cover.xml', 'views/snippets/s_features.xml', + 'views/snippets/s_masonry_block.xml', + 'views/snippets/s_media_list.xml', 'views/snippets/s_numbers.xml', 'views/snippets/s_references.xml', - 'views/snippets/s_masonry_block.xml', + 'views/snippets/s_image_text.xml', + 'views/snippets/s_three_columns.xml', ], 'images': [ 'static/description/zap_cover.gif', 'static/description/zap_screenshot.jpg', ], + 'images_preview_theme': { + 'website.s_banner_default_image': '/theme_zap/static/src/img/content/banner.jpg', + 'website.s_three_columns_default_image_1': '/theme_zap/static/src/img/content/three_columns_01.jpg', + 'website.s_three_columns_default_image_2': '/theme_zap/static/src/img/content/three_columns_02.jpg', + 'website.s_three_columns_default_image_3': '/theme_zap/static/src/img/content/three_columns_03.jpg', + 'website.library_image_08': '/theme_zap/static/src/img/backgrounds/01.jpg', + 'website.s_masonry_block_default_image_1': '/theme_zap/static/src/img/backgrounds/16.jpg', + 'website.library_image_02': '/theme_zap/static/src/img/content/masonry_block_02.jpg', + }, 'license': 'LGPL-3', 'live_test_url': 'https://theme-zap.odoo.com', 'assets': { diff --git a/theme_zap/data/ir_asset.xml b/theme_zap/data/ir_asset.xml index fc14c0233..04d446af4 100644 --- a/theme_zap/data/ir_asset.xml +++ b/theme_zap/data/ir_asset.xml @@ -1,21 +1,19 @@ - - - theme_zap.primary_variables_scss - Primary variables SCSS - web._assets_primary_variables - theme_zap/static/src/scss/primary_variables.scss - + + theme_zap.primary_variables_scss + Primary variables SCSS + web._assets_primary_variables + theme_zap/static/src/scss/primary_variables.scss + - - theme_zap.bootstrap_overridden_scss - Bootstrap overridden SCSS - web._assets_frontend_helpers - prepend - theme_zap/static/src/scss/bootstrap_overridden.scss - + + theme_zap.bootstrap_overridden_scss + Bootstrap overridden SCSS + web._assets_frontend_helpers + prepend + theme_zap/static/src/scss/bootstrap_overridden.scss + - diff --git a/theme_zap/static/description/zap_screenshot.jpg b/theme_zap/static/description/zap_screenshot.jpg index c7f0bacc6..9b53e132a 100644 Binary files a/theme_zap/static/description/zap_screenshot.jpg and b/theme_zap/static/description/zap_screenshot.jpg differ diff --git a/theme_zap/static/src/img/content/banner.jpg b/theme_zap/static/src/img/content/banner.jpg new file mode 100644 index 000000000..14094f204 Binary files /dev/null and b/theme_zap/static/src/img/content/banner.jpg differ diff --git a/theme_zap/static/src/img/content/masonry_block_02.jpg b/theme_zap/static/src/img/content/masonry_block_02.jpg new file mode 100644 index 000000000..2271e4349 Binary files /dev/null and b/theme_zap/static/src/img/content/masonry_block_02.jpg differ diff --git a/theme_zap/static/src/img/content/parallax.jpg b/theme_zap/static/src/img/content/parallax.jpg new file mode 100644 index 000000000..a3b7b2af8 Binary files /dev/null and b/theme_zap/static/src/img/content/parallax.jpg differ diff --git a/theme_zap/static/src/img/content/text_image.jpg b/theme_zap/static/src/img/content/text_image.jpg index a6b23a172..fa4af6667 100644 Binary files a/theme_zap/static/src/img/content/text_image.jpg and b/theme_zap/static/src/img/content/text_image.jpg differ diff --git a/theme_zap/static/src/img/content/three_columns_01.jpg b/theme_zap/static/src/img/content/three_columns_01.jpg index beda221ef..bbcf4f921 100644 Binary files a/theme_zap/static/src/img/content/three_columns_01.jpg and b/theme_zap/static/src/img/content/three_columns_01.jpg differ diff --git a/theme_zap/static/src/img/content/three_columns_02.jpg b/theme_zap/static/src/img/content/three_columns_02.jpg index ed33dd462..04ec092e5 100644 Binary files a/theme_zap/static/src/img/content/three_columns_02.jpg and b/theme_zap/static/src/img/content/three_columns_02.jpg differ diff --git a/theme_zap/static/src/img/content/three_columns_03.jpg b/theme_zap/static/src/img/content/three_columns_03.jpg index 67f950184..4ac0138b8 100644 Binary files a/theme_zap/static/src/img/content/three_columns_03.jpg and b/theme_zap/static/src/img/content/three_columns_03.jpg differ diff --git a/theme_zap/static/src/js/tour.js b/theme_zap/static/src/js/tour.js index fa2f48725..fde80a559 100644 --- a/theme_zap/static/src/js/tour.js +++ b/theme_zap/static/src/js/tour.js @@ -1,8 +1,6 @@ -odoo.define("theme_zap.tour.zap", function (require) { -"use strict"; +/** @odoo-module */ -const wTourUtils = require("website.tour_utils"); -var tour = require("web_tour.tour"); +import wTourUtils from 'website.tour_utils'; const snippets = [ { @@ -10,8 +8,8 @@ const snippets = [ name: 'Banner', }, { - id: 's_numbers', - name: 'Numbers', + id: 's_three_columns', + name: 'Columns', }, { id: 's_color_blocks_2', @@ -44,4 +42,3 @@ wTourUtils.registerThemeHomepageTour("zap_tour", [ wTourUtils.changeBackgroundColor(), wTourUtils.selectColorPalette(), ]); -}); diff --git a/theme_zap/static/src/scss/bootstrap_overridden.scss b/theme_zap/static/src/scss/bootstrap_overridden.scss index b432f5844..d76f31a8a 100644 --- a/theme_zap/static/src/scss/bootstrap_overridden.scss +++ b/theme_zap/static/src/scss/bootstrap_overridden.scss @@ -3,74 +3,53 @@ //------------------------------------------------------------------------------// // Headings -@if o-website-value('headings-font-number') == 1 { - // Roboto +@if o-website-value('headings-font') == 'Roboto' { $o-theme-headings-font-weight: 500; } -@else if o-website-value('headings-font-number') == 4 { - // Lato - $o-theme-headings-font-weight: 300; -} -@else if o-website-value('headings-font-number') == 5 { - // Advent Pro - $o-theme-h1-font-size-multiplier: 4; - $o-theme-h2-font-size-multiplier: 3.5; +@else if o-website-value('headings-font') == 'Nunito' { $o-theme-headings-font-weight: 600; } -@else if o-website-value('headings-font-number') == 6 { - // Oswald - $o-theme-h1-font-size-multiplier: 4; - $o-theme-h2-font-size-multiplier: 3.5; +@else if o-website-value('headings-font') == 'Advent Pro' { + $o-theme-headings-font-weight: 600; } // Body -@if o-website-value('font-number') == 1 { - // Roboto +@if o-website-value('font') == 'Roboto' { $o-theme-font-weight-bold: 500; } -@else if o-website-value('font-number') == 4 { - // Lato +@else if o-website-value('font') == 'Lato' { $o-theme-font-weight-light: 300; $o-theme-font-weight-bold: 600; } -@else if o-website-value('font-number') == 5 { - // Advent Pro +@else if o-website-value('font') == 'Advent Pro' { $o-theme-font-weight-bold: 600; } -@else if o-website-value('font-number') == 6 { - // Oswald +@else if o-website-value('font') == 'Oswald' { $o-theme-font-weight-light: 200; $o-theme-font-weight-normal: 300; $o-theme-font-weight-bold: 400; } -@else if o-website-value('font-number') == 8 { - // Open Sans +@else if o-website-value('font') == 'Open Sans' { $o-theme-font-weight-bold: 600; } -@else if o-website-value('font-number') == 10 { - // Montserrat Alternates +@else if o-website-value('font') == 'Montserrat Alternates' { $o-theme-font-weight-bold: 600; } // Buttons -@if o-website-value('buttons-font-number') == 1 { - // Roboto +@if o-website-value('buttons-font') == 'Roboto' { $o-theme-btn-font-weight: 500; } -@else if o-website-value('buttons-font-number') == 5 { - // Advent Pro +@else if o-website-value('buttons-font') == 'Advent Pro' { $o-theme-btn-font-weight: 600; } -@else if o-website-value('buttons-font-number') == 6 { - // Oswald +@else if o-website-value('buttons-font') == 'Oswald' { $o-theme-btn-font-weight: 200; } -@else if o-website-value('buttons-font-number') == 8 { - // Open Sans +@else if o-website-value('buttons-font') == 'Open Sans' { $o-theme-btn-font-weight: 600; } -@else if o-website-value('buttons-font-number') == 10 { - // Montserrat Alternates +@else if o-website-value('buttons-font') == 'Montserrat Alternates' { $o-theme-btn-font-weight: 600; } diff --git a/theme_zap/static/src/scss/primary_variables.scss b/theme_zap/static/src/scss/primary_variables.scss index 9ff160361..c42a35c16 100644 --- a/theme_zap/static/src/scss/primary_variables.scss +++ b/theme_zap/static/src/scss/primary_variables.scss @@ -4,24 +4,34 @@ $o-website-values-palettes: ( ( - 'color-palettes-name': 'zap-1', + 'color-palettes-name': 'zap-1', + // Header 'header-template': 'hamburger', 'logo-height': 2.75rem, 'fixed-logo-height': 2rem, 'header-links-style': 'fill', - 'header-font-size': (14 / 16) * 1rem, - 'font-size-base': (14 / 16) * 1rem, - 'hamburger-position': 'right', - // Font - 'font': 'Roboto', - 'headings-font': 'Montserrat Alternates', - 'navbar-font': 'Roboto', - 'buttons-font': 'Montserrat Alternates', + 'font': 'Lato', + 'headings-font': 'Lato', + 'navbar-font': 'Lato', + 'buttons-font': 'Lato', + + // Buttons + 'btn-padding-y': .625rem, + 'btn-padding-x': 1.5rem, + 'btn-padding-y-sm': .375rem, + 'btn-padding-x-sm': .75rem, + 'btn-padding-y-lg': .75rem, + 'btn-padding-x-lg': 2rem, + 'btn-ripple': true, + 'input-padding-y': .75rem, + 'input-padding-y-sm': .375rem, + 'input-padding-y-lg': .75rem, + // Footer 'footer-template': 'links', ), @@ -51,16 +61,18 @@ $o-theme-font-configs: ( 'Advent Pro': ( 'family': ('Advent Pro', sans-serif), 'url': 'Advent+Pro:300,300i,400,400i,600,600i', - 'base': ( - 'font-size-base': 1.125rem, - ), + 'properties': ( + 'base': ( + 'font-size-base': 1.125rem, + ), + ) ), 'Oswald': ( 'family': ('Oswald', sans-serif), 'url': 'Oswald:300,300i,400,400i,700,700i', 'properties': ( 'base': ( - 'font-size-base': 1.25rem, + 'font-size-base': 1.25rem, ), ) ), @@ -82,7 +94,12 @@ $o-theme-font-configs: ( ), 'Nunito': ( 'family': ('Nunito', sans-serif), - 'url': 'Nunito:300,300i,400,400i,700,700i', + 'url': 'Nunito:300,300i,400,400i,600,600i', + 'properties' : ( + 'base': ( + 'header-font-size': (15 / 16) * 1rem, + ), + ) ), ); @@ -90,10 +107,6 @@ $o-theme-font-configs: ( $o-theme-h1-font-size-multiplier: 3; $o-theme-h2-font-size-multiplier: 2.5; -$o-theme-h3-font-size-multiplier: 2; -$o-theme-h4-font-size-multiplier: 1.75; -$o-theme-h5-font-size-multiplier: 1.5; -$o-theme-h6-font-size-multiplier: 1.25; $o-theme-headings-font-weight: 400; @@ -118,46 +131,46 @@ $o-theme-btn-font-weight: 400; $o-theme-color-palettes: map-merge($o-theme-color-palettes, ( 'zap-1': ( - 'alpha': #337ab7, - 'beta': #5cb85c, - 'gamma': #5bc0de, - 'delta': #f0ad4e, - 'epsilon': #d9534f, + 'alpha': #337ab7, + 'beta': #5cb85c, + 'gamma': #5bc0de, + 'delta': #f0ad4e, + 'epsilon': #d9534f, ), 'zap-2': ( - 'alpha': #ed8c2b, - 'beta': #cf4a30, - 'gamma': #911146, - 'delta': #35203b, - 'epsilon': #88a825, + 'alpha': #ed8c2b, + 'beta': #cf4a30, + 'gamma': #911146, + 'delta': #35203b, + 'epsilon': #88a825, ), 'zap-3': ( - 'alpha': #79bd8f, - 'beta': #00a388, - 'gamma': #046380, - 'delta': #4bb5c1, - 'epsilon': #beeb9f, + 'alpha': #79bd8f, + 'beta': #00a388, + 'gamma': #046380, + 'delta': #4bb5c1, + 'epsilon': #beeb9f, ), 'zap-4': ( - 'alpha': #16c6cc, - 'beta': #d72d3C, - 'gamma': #ff6d3b, - 'delta': #ffb733, - 'epsilon': #ffd55c, + 'alpha': #16c6cc, + 'beta': #d72d3C, + 'gamma': #ff6d3b, + 'delta': #ffb733, + 'epsilon': #ffd55c, ), 'zap-5': ( - 'alpha': #14212b, - 'beta': #e6e2af, - 'gamma': #c9de55, - 'delta': #962d3e, - 'epsilon': #413659, + 'alpha': #14212b, + 'beta': #e6e2af, + 'gamma': #c9de55, + 'delta': #962d3e, + 'epsilon': #413659, ), 'zap-6': ( - 'alpha': #ee592f, - 'beta': #59c1b0, - 'gamma': #1fa58d, - 'delta': #f8c63b, - 'epsilon': #dcb038, + 'alpha': #ee592f, + 'beta': #59c1b0, + 'gamma': #1fa58d, + 'delta': #f8c63b, + 'epsilon': #dcb038, ), ) ); @@ -189,3 +202,9 @@ $o-color-palettes-compatibility-indexes: ( 22: 'generic-16', 23: 'generic-17', ); + +//------------------------------------------------------------------------------ +// Shapes +//------------------------------------------------------------------------------ + +$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/04_001', (3: 4)); diff --git a/theme_zap/views/images_library.xml b/theme_zap/views/images_library.xml index 5beab58a8..04d1965b3 100644 --- a/theme_zap/views/images_library.xml +++ b/theme_zap/views/images_library.xml @@ -1,248 +1,269 @@ - - - theme_zap.bg_img_01 - theme_zap.background_img_01 - /theme_zap/static/src/img/backgrounds/01.jpg - - - theme_zap.bg_img_02 - theme_zap.background_img_02 - /theme_zap/static/src/img/backgrounds/02.jpg - - - theme_zap.bg_img_03 - theme_zap.background_img_03 - /theme_zap/static/src/img/backgrounds/03.jpg - - - theme_zap.bg_img_04 - theme_zap.background_img_04 - /theme_zap/static/src/img/backgrounds/04.jpg - - - theme_zap.bg_img_05 - theme_zap.background_img_05 - /theme_zap/static/src/img/backgrounds/05.jpg - - - theme_zap.bg_img_06 - theme_zap.background_img_06 - /theme_zap/static/src/img/backgrounds/06.jpg - - - theme_zap.bg_img_07 - theme_zap.background_img_07 - /theme_zap/static/src/img/backgrounds/07.jpg - - - theme_zap.bg_img_08 - theme_zap.background_img_08 - /theme_zap/static/src/img/backgrounds/08.jpg - - - theme_zap.bg_img_09 - theme_zap.background_img_09 - /theme_zap/static/src/img/backgrounds/09.jpg - - - theme_zap.bg_img_10 - theme_zap.background_img_10 - /theme_zap/static/src/img/backgrounds/10.jpg - - - theme_zap.bg_img_11 - theme_zap.background_img_11 - /theme_zap/static/src/img/backgrounds/11.jpg - - - theme_zap.bg_img_12 - theme_zap.background_img_12 - /theme_zap/static/src/img/backgrounds/12.jpg - - - theme_zap.bg_img_13 - theme_zap.background_img_13 - /theme_zap/static/src/img/backgrounds/13.jpg - - - theme_zap.bg_img_14 - theme_zap.background_img_14 - /theme_zap/static/src/img/backgrounds/14.jpg - - - theme_zap.bg_img_15 - theme_zap.background_img_15 - /theme_zap/static/src/img/backgrounds/15.jpg - - - theme_zap.bg_img_16 - theme_zap.background_img_16 - /theme_zap/static/src/img/backgrounds/16.jpg - - - - theme_zap.bg_pattern_01 - theme_zap.background_pattern_01 - /theme_zap/static/src/img/patterns/01.png - - - theme_zap.bg_pattern_02 - theme_zap.background_pattern_02 - /theme_zap/static/src/img/patterns/02.png - - - theme_zap.bg_pattern_03 - theme_zap.background_pattern_03 - /theme_zap/static/src/img/patterns/03.png - - - theme_zap.bg_pattern_04 - theme_zap.background_pattern_04 - /theme_zap/static/src/img/patterns/04.png - - - theme_zap.bg_pattern_05 - theme_zap.background_pattern_05 - /theme_zap/static/src/img/patterns/05.png - - - theme_zap.bg_pattern_06 - theme_zap.background_pattern_06 - /theme_zap/static/src/img/patterns/06.png - - - theme_zap.bg_pattern_07 - theme_zap.background_pattern_07 - /theme_zap/static/src/img/patterns/07.png - - - theme_zap.bg_pattern_06 - theme_zap.background_pattern_06 - /theme_zap/static/src/img/patterns/08.png - - - theme_zap.bg_pattern_07 - theme_zap.background_pattern_07 - /theme_zap/static/src/img/patterns/09.png - + + + theme_zap.bg_img_01 + theme_zap.background_img_01 + /theme_zap/static/src/img/backgrounds/01.jpg + + + theme_zap.bg_img_02 + theme_zap.background_img_02 + /theme_zap/static/src/img/backgrounds/02.jpg + + + theme_zap.bg_img_03 + theme_zap.background_img_03 + /theme_zap/static/src/img/backgrounds/03.jpg + + + theme_zap.bg_img_04 + theme_zap.background_img_04 + /theme_zap/static/src/img/backgrounds/04.jpg + + + theme_zap.bg_img_05 + theme_zap.background_img_05 + /theme_zap/static/src/img/backgrounds/05.jpg + + + theme_zap.bg_img_06 + theme_zap.background_img_06 + /theme_zap/static/src/img/backgrounds/06.jpg + + + theme_zap.bg_img_07 + theme_zap.background_img_07 + /theme_zap/static/src/img/backgrounds/07.jpg + + + theme_zap.bg_img_08 + theme_zap.background_img_08 + /theme_zap/static/src/img/backgrounds/08.jpg + + + theme_zap.bg_img_09 + theme_zap.background_img_09 + /theme_zap/static/src/img/backgrounds/09.jpg + + + theme_zap.bg_img_10 + theme_zap.background_img_10 + /theme_zap/static/src/img/backgrounds/10.jpg + + + theme_zap.bg_img_11 + theme_zap.background_img_11 + /theme_zap/static/src/img/backgrounds/11.jpg + + + theme_zap.bg_img_12 + theme_zap.background_img_12 + /theme_zap/static/src/img/backgrounds/12.jpg + + + theme_zap.bg_img_13 + theme_zap.background_img_13 + /theme_zap/static/src/img/backgrounds/13.jpg + + + theme_zap.bg_img_14 + theme_zap.background_img_14 + /theme_zap/static/src/img/backgrounds/14.jpg + + + theme_zap.bg_img_15 + theme_zap.background_img_15 + /theme_zap/static/src/img/backgrounds/15.jpg + + + theme_zap.bg_img_16 + theme_zap.background_img_16 + /theme_zap/static/src/img/backgrounds/16.jpg + - + + + theme_zap.bg_pattern_01 + theme_zap.background_pattern_01 + /theme_zap/static/src/img/patterns/01.png + + + theme_zap.bg_pattern_02 + theme_zap.background_pattern_02 + /theme_zap/static/src/img/patterns/02.png + + + theme_zap.bg_pattern_03 + theme_zap.background_pattern_03 + /theme_zap/static/src/img/patterns/03.png + + + theme_zap.bg_pattern_04 + theme_zap.background_pattern_04 + /theme_zap/static/src/img/patterns/04.png + + + theme_zap.bg_pattern_05 + theme_zap.background_pattern_05 + /theme_zap/static/src/img/patterns/05.png + + + theme_zap.bg_pattern_06 + theme_zap.background_pattern_06 + /theme_zap/static/src/img/patterns/06.png + + + theme_zap.bg_pattern_07 + theme_zap.background_pattern_07 + /theme_zap/static/src/img/patterns/07.png + + + theme_zap.bg_pattern_06 + theme_zap.background_pattern_06 + /theme_zap/static/src/img/patterns/08.png + + + theme_zap.bg_pattern_07 + theme_zap.background_pattern_07 + /theme_zap/static/src/img/patterns/09.png + - - - website.s_banner_default_image - website.s_banner_default_image - /theme_zap/static/src/img/backgrounds/09.jpg - + - - - website.s_cover_default_image - website.s_cover_default_image - /theme_zap/static/src/img/backgrounds/09.jpg - + + + website.s_banner_default_image + website.s_banner_default_image + /theme_zap/static/src/img/content/banner.jpg + - - - website.s_text_image_default_image - website.s_text_image_default_image - /theme_zap/static/src/img/content/text_image.jpg - + + + website.s_cover_default_image + website.s_cover_default_image + /theme_zap/static/src/img/backgrounds/09.jpg + - - - website.s_image_text_default_image - website.s_image_text_default_image - /theme_zap/static/src/img/content/image_text.jpg - + + + website.s_text_image_default_image + website.s_text_image_default_image + /theme_zap/static/src/img/content/text_image.jpg + - - - website.s_picture_default_image - website.s_picture_default_image - /theme_zap/static/src/img/content/picture.jpg - + + + website.s_image_text_default_image + website.s_image_text_default_image + /theme_zap/static/src/img/content/image_text.jpg + - - - website.s_masonry_block_default_image_1 - website.s_masonry_block_default_image_1 - /theme_zap/static/src/img/backgrounds/16.jpg - + + + website.s_picture_default_image + website.s_picture_default_image + /theme_zap/static/src/img/content/picture.jpg + - - - website.s_carousel_default_image_1 - website.s_carousel_default_image_1 - /theme_zap/static/src/img/backgrounds/05.jpg - - - website.s_carousel_default_image_2 - website.s_carousel_default_image_2 - /theme_zap/static/src/img/backgrounds/08.jpg - - - website.s_carousel_default_image_3 - website.s_carousel_default_image_3 - /theme_zap/static/src/img/backgrounds/07.jpg - + + + website.s_masonry_block_default_image_1 + website.s_masonry_block_default_image_1 + /theme_zap/static/src/img/backgrounds/16.jpg + + + website.s_masonry_block_default_image_2 + website.s_masonry_block_default_image_2 + /theme_zap/static/src/img/content/masonry_block_02.jpg + - - - website.s_three_columns_default_image_1 - website.s_three_columns_default_image_1 - /theme_zap/static/src/img/content/three_columns_01.jpg - - - website.s_three_columns_default_image_2 - website.s_three_columns_default_image_2 - /theme_zap/static/src/img/content/three_columns_02.jpg - - - website.s_three_columns_default_image_3 - website.s_three_columns_default_image_3 - /theme_zap/static/src/img/content/three_columns_03.jpg - + + + website.s_carousel_default_image_1 + website.s_carousel_default_image_1 + /theme_zap/static/src/img/backgrounds/05.jpg + + + website.s_carousel_default_image_2 + website.s_carousel_default_image_2 + /theme_zap/static/src/img/backgrounds/08.jpg + + + website.s_carousel_default_image_3 + website.s_carousel_default_image_3 + /theme_zap/static/src/img/backgrounds/07.jpg + - - - website.s_media_list_default_image_1 - website.s_media_list_default_image_1 - /theme_zap/static/src/img/content/media_list_01.jpg - - - website.s_media_list_default_image_2 - website.s_media_list_default_image_2 - /theme_zap/static/src/img/content/media_list_02.jpg - - - website.s_media_list_default_image_3 - website.s_media_list_default_image_3 - /theme_zap/static/src/img/content/media_list_03.jpg - + + + website.s_three_columns_default_image_1 + website.s_three_columns_default_image_1 + /theme_zap/static/src/img/content/three_columns_01.jpg + + + website.s_three_columns_default_image_2 + website.s_three_columns_default_image_2 + /theme_zap/static/src/img/content/three_columns_02.jpg + + + website.s_three_columns_default_image_3 + website.s_three_columns_default_image_3 + /theme_zap/static/src/img/content/three_columns_03.jpg + + + + + website.s_media_list_default_image_1 + website.s_media_list_default_image_1 + /theme_zap/static/src/img/content/media_list_01.jpg + + + website.s_media_list_default_image_2 + website.s_media_list_default_image_2 + /theme_zap/static/src/img/content/media_list_02.jpg + + + website.s_media_list_default_image_3 + website.s_media_list_default_image_3 + /theme_zap/static/src/img/content/media_list_03.jpg + + + + + website.s_company_team_image_1 + website.s_company_team_image_1 + /theme_zap/static/src/img/content/company_team_01.jpg + + + website.s_company_team_image_2 + website.s_company_team_image_2 + /theme_zap/static/src/img/content/company_team_02.jpg + + + website.s_company_team_image_3 + website.s_company_team_image_3 + /theme_zap/static/src/img/content/company_team_03.jpg + + + website.s_company_team_image_4 + website.s_company_team_image_4 + /theme_zap/static/src/img/content/company_team_04.jpg + + + + + website.s_parallax_default_image + website.s_parallax_default_image + /theme_zap/static/src/img/content/parallax.jpg + + + + + website.library_image_08 + website.library_image_08 + /theme_zap/static/src/img/backgrounds/01.jpg + - - - website.s_company_team_image_1 - website.s_company_team_image_1 - /theme_zap/static/src/img/content/company_team_01.jpg - - - website.s_company_team_image_2 - website.s_company_team_image_2 - /theme_zap/static/src/img/content/company_team_02.jpg - - - website.s_company_team_image_3 - website.s_company_team_image_3 - /theme_zap/static/src/img/content/company_team_03.jpg - - - website.s_company_team_image_4 - website.s_company_team_image_4 - /theme_zap/static/src/img/content/company_team_04.jpg - diff --git a/theme_zap/views/snippets/s_banner.xml b/theme_zap/views/snippets/s_banner.xml index d29d3b792..57e1a7f52 100644 --- a/theme_zap/views/snippets/s_banner.xml +++ b/theme_zap/views/snippets/s_banner.xml @@ -1,25 +1,35 @@ - + + + diff --git a/theme_zap/views/snippets/s_call_to_action.xml b/theme_zap/views/snippets/s_call_to_action.xml new file mode 100644 index 000000000..24880fb82 --- /dev/null +++ b/theme_zap/views/snippets/s_call_to_action.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/theme_zap/views/snippets/s_color_blocks_2.xml b/theme_zap/views/snippets/s_color_blocks_2.xml index a6b4c7f52..1b603cbb5 100644 --- a/theme_zap/views/snippets/s_color_blocks_2.xml +++ b/theme_zap/views/snippets/s_color_blocks_2.xml @@ -1,28 +1,27 @@ - + + + diff --git a/theme_zap/views/snippets/s_cover.xml b/theme_zap/views/snippets/s_cover.xml new file mode 100644 index 000000000..9c95f1e9b --- /dev/null +++ b/theme_zap/views/snippets/s_cover.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/theme_zap/views/snippets/s_features.xml b/theme_zap/views/snippets/s_features.xml index 1abe0ab6e..9846884ab 100644 --- a/theme_zap/views/snippets/s_features.xml +++ b/theme_zap/views/snippets/s_features.xml @@ -1,45 +1,53 @@ - + + + diff --git a/theme_zap/views/snippets/s_image_text.xml b/theme_zap/views/snippets/s_image_text.xml new file mode 100644 index 000000000..3ee55243f --- /dev/null +++ b/theme_zap/views/snippets/s_image_text.xml @@ -0,0 +1,19 @@ + + + + + + diff --git a/theme_zap/views/snippets/s_masonry_block.xml b/theme_zap/views/snippets/s_masonry_block.xml index 86e656082..8aa0d4e23 100644 --- a/theme_zap/views/snippets/s_masonry_block.xml +++ b/theme_zap/views/snippets/s_masonry_block.xml @@ -1,31 +1,38 @@ - + + + diff --git a/theme_zap/views/snippets/s_media_list.xml b/theme_zap/views/snippets/s_media_list.xml new file mode 100644 index 000000000..6db1f1ac4 --- /dev/null +++ b/theme_zap/views/snippets/s_media_list.xml @@ -0,0 +1,20 @@ + + + + + + diff --git a/theme_zap/views/snippets/s_numbers.xml b/theme_zap/views/snippets/s_numbers.xml index da361cd64..ae846a109 100644 --- a/theme_zap/views/snippets/s_numbers.xml +++ b/theme_zap/views/snippets/s_numbers.xml @@ -1,40 +1,43 @@ - + + + diff --git a/theme_zap/views/snippets/s_references.xml b/theme_zap/views/snippets/s_references.xml index a7d420b27..c38df9b72 100644 --- a/theme_zap/views/snippets/s_references.xml +++ b/theme_zap/views/snippets/s_references.xml @@ -1,41 +1,49 @@ - + + + diff --git a/theme_zap/views/snippets/s_three_columns.xml b/theme_zap/views/snippets/s_three_columns.xml new file mode 100644 index 000000000..7bd4d976b --- /dev/null +++ b/theme_zap/views/snippets/s_three_columns.xml @@ -0,0 +1,32 @@ + + + + + +