diff options
Diffstat (limited to 'templates/grid.html.twig')
-rw-r--r-- | templates/grid.html.twig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/grid.html.twig b/templates/grid.html.twig index 79e8f59..c2bf3fd 100644 --- a/templates/grid.html.twig +++ b/templates/grid.html.twig @@ -17,14 +17,14 @@ {{ page.content|raw }} <ul> {% for current_page in page.children %} - <li> + <div> <a href="{{ current_page.url|e }}"> <div> - {{ current_page.media.images|first }} + {{ current_page.media.images|first|raw }} {{ current_page.title|e }} </div> </a> - </li> + </div> {% endfor %} </ul> {% include 'partials/navigation.html.twig' %} |