summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/layout_builder/layout_builder.layouts.yml
blob: 3512c52677ea0e3ecedba0fcc4a3d906c5e5a93e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
layout_twocol_section:
  label: 'Two column'
  path: layouts/twocol_section
  template: layout--twocol-section
  library: layout_builder/twocol_section
  class: '\Drupal\layout_builder\Plugin\Layout\TwoColumnLayout'
  category: 'Columns: 2'
  default_region: first
  icon_map:
    - [first, second]
  regions:
    first:
      label: First
    second:
      label: Second

layout_threecol_section:
  label: 'Three column'
  path: layouts/threecol_section
  template: layout--threecol-section
  library: layout_builder/threecol_section
  class: '\Drupal\layout_builder\Plugin\Layout\ThreeColumnLayout'
  category: 'Columns: 3'
  default_region: second
  icon_map:
    - [first, second, third]
  regions:
    first:
      label: First
    second:
      label: Second
    third:
      label: Third

layout_fourcol_section:
  label: 'Four column'
  path: layouts/fourcol_section
  template: layout--fourcol-section
  library: layout_builder/fourcol_section
  category: 'Columns: 4'
  default_region: first
  icon_map:
    - [first, second, third, fourth]
  regions:
    first:
      label: First
    second:
      label: Second
    third:
      label: Third
    fourth:
      label: Fourth