From 828c3fae332f0a0cd3956cb46e1ad2ddd39566a6 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Tue, 21 Jan 2020 21:28:22 -0700 Subject: [PATCH] Added missing
  • elements in file list --- app/resources/views/index.twig | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/app/resources/views/index.twig b/app/resources/views/index.twig index 9cd1615..ffa949a 100644 --- a/app/resources/views/index.twig +++ b/app/resources/views/index.twig @@ -4,7 +4,7 @@ {% include "components/header.twig" %}
    -
      +
      File Name @@ -19,14 +19,20 @@
      - {% if not search and not is_root %} - {{ include('components/file.twig', { parentDir: true }) }} - {% endif %} +
        +
      • + {% if not search and not is_root %} + {{ include('components/file.twig', { parentDir: true }) }} + {% endif %} +
      • - {% for file in files %} - {{ include('components/file.twig') }} - {% endfor %} -
      +
    • + {% for file in files %} + {{ include('components/file.twig') }} + {% endfor %} +
    • +
    +
    {% if readme and not search %} {% include 'components/readme.twig' %}