I'm creating a View that will list a custom post type. I want the first element of the list to have a different markup than the rest of the list. This way I can show it as a feature, highlighting it.
I have built this using the Toolset View plugin in the past, but I would like to use the new Toolset Block plugin for a new website I'm building.
With Views, I would create something like the following, using [wpv-item index=1]
```
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<wpv-loop wrap="4" pad="true">
[wpv-item index=1]
```
I could not find where I would place the conditions, or similar code with Blocks.
Does Blocks offer a way to enter the code for the loop?