I'm using the SonataAdmin Sandbox to test the CMS functionality, which is so far driving me insane
I have created a site and a test page. Now I'm looking to add content. There is a content_top, content and content_bottom
What I'm looking to do, is to create a 3 column page.
So within the content
block list of the page, I have added a basic sonata.block.service.text
.
I gave a layout {{ CONTENT }}
and a Class
of left-col
You can see this in the image below
Now, this is all good and it displays the text from the text.block
fine.
I thought that by giving a Class
when the block is rendered, it would render the Class
field and a HTML/CSS class à la:
<div class="left-col">TEXT BLOCK CONTENT</div>
But alas, this just doesn't seem to happen
Am I right in thinking this Class
field is used as the container's HTML css when rendering?
If so, then this is clearly a bug...
Thanks