diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-11-16 00:39:47 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-11-16 00:39:47 -0500 |
commit | ab0ed7c99e28f4c6e91755c182d81ed71cb40b5b (patch) | |
tree | 95468b0452fdc017042a365a3325107071890dfe /templates/grid.html.twig | |
parent | 88b6c5f38298c940242e40efe1e08096a6da20ba (diff) | |
download | grav-sowtheme-ab0ed7c99e28f4c6e91755c182d81ed71cb40b5b.tar.gz grav-sowtheme-ab0ed7c99e28f4c6e91755c182d81ed71cb40b5b.tar.bz2 grav-sowtheme-ab0ed7c99e28f4c6e91755c182d81ed71cb40b5b.zip |
Update formatting
Diffstat (limited to 'templates/grid.html.twig')
-rw-r--r-- | templates/grid.html.twig | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/templates/grid.html.twig b/templates/grid.html.twig index 8935ec2..c23e98d 100644 --- a/templates/grid.html.twig +++ b/templates/grid.html.twig @@ -17,13 +17,11 @@ {{ page.content|raw }} <div class="grid"> {% for current_page in page.children %} - <a href="{{ current_page.url|e }}"> - <div class="proj"> - <div class="proj-thumb"> - {{ current_page.media.images|first|raw }} - </div> - {{ current_page.title|e }} - </div> + <a href="{{ current_page.url|e }}" class="proj"> + <div class="proj-thumb"> + {{ current_page.media.images|first|raw }} + </div> + {{ current_page.title|e }} </a> {% endfor %} </div> |