I would like to print a block region inside a layout file. However the layout template doesnt have access to the 'page' variable. So I cannot do:
{{ page.regionname }}
Is there any code to print block regions? Oooor how can I get the page variable in one of my layouts? The layout and template file is defined in my yml file as follows:
services_overview:
label: services - Overview
category: ssld Layouts
template: templates/layouts/ssld-hs-overview
regions:
sidebar_left:
label: Sidebar Left
right:
label: Right
left:
label: Left
middle:
label: Middle
(It might be worth mentioning that I'm not too familiar with twig. This is the first time I work with Drupal 8)