...
Code Block | ||
---|---|---|
| ||
# Here I need to reproduce the right configuration tree. # It will be merged with the main one ezpublish: system: my_siteaccess: ezpage: layouts: 2ZonesLayout1: name: "2 zones (layout 1)" template: "AcmeTestBundle:zone:2zoneslayout1.html.twig" locationcontent_view: full: article_test: template: "AcmeTestBundle:full:article_test.html.twig" match: Id\Location: [144,149] another_test: template: "::another_test.html.twig" match: Id\Content: 142 block_view: campaign: template: "AcmeTestBundle:block:campaign.html.twig" match: Type: "Campaign" |
...
Code Block | ||
---|---|---|
| ||
# We explicitly prepend config for "ezpublish" namespace in service container extension, # so no need to repeat it here system: ezdemo_frontend_group: ezpage: layouts: 2ZonesLayout1: name: "2 zones (layout 1)" template: "AcmeTestBundle:zone:2zoneslayout1.html.twig" locationcontent_view: full: article_test: template: "AcmeTestBundle:full:article_test.html.twig" match: Id\Location: 144 another_test: template: "::another_test.html.twig" match: Id\Content: 142 block_view: campaign: template: "AcmeTestBundle:block:campaign.html.twig" match: Type: "Campaign" |
...