I drupal 8, I am trying to create a template for a 'custom block type' (called shortcut) with fields (shortcut_image, shortcut_icon). I followed the suggested template and created region--shortcut.html.twig
{% if content %}<div class="row">{{ content }}</div>{% endif %}
I want to apply grid and use the value of the field shortcut_image as background for each of the shortcut items to make it look like this http://prntscr.com/cynmba.
My problem now is that, the {{content} variable is not an array. How do i get the value of the fields to create a custom template for that specific custom block type or region?