git.fiddlerwoaroof.com
twig/tree.twig
ffc9d555
 {% extends 'layout_page.twig' %}
 
 {% set page = 'files' %}
 
6933b58c
 {% block title %}
   GitList
 {% endblock %}
ffc9d555
 
 {% block content %}
6933b58c
   {% embed 'breadcrumb.twig' with {breadcrumbs: breadcrumbs} %}
   {% block extra %}
   {% endblock %}
   {% endembed %}
   <div class="pull-right">
     <div class="btn-group download-buttons">
       <a href="{{ path('archive', {repo: repo, branch: branch, format: 'zip'}) }}" class="btn btn-mini" title="Download '{{ branch }}' as a ZIP archive">ZIP</a>
       <a href="{{ path('archive', {repo: repo, branch: branch, format: 'tar'}) }}" class="btn btn-mini" title="Download '{{ branch }}' as a TAR archive">TAR</a>
     </div>
     <a href="{{ path('rss', {repo: repo, branch: branch}) }}" class="rss-icon"><i class="rss"></i></a>
   </div>
ffc9d555
 
6933b58c
   {% if files is not empty %}
ffc9d555
     <table class="tree">
6933b58c
       <thead>
         <tr>
           <th width="80%">name</th>
           <th width="10%">mode</th>
           <th width="10%">size</th>
         </tr>
       </thead>
       <tbody>
         {% if parent is not null %}
           <tr>
             <td><i class="icon-spaced"></i>
               {% if not parent %}
                 <a href="{{ path('branch', {repo: repo, branch: branch}) }}">..</a>
               {% else %}
                 <a href="{{ path('tree', {repo: repo, commitishPath: branch ~ '/' ~ parent}) }}">..</a>
               {% endif %}
             </td>
             <td></td>
             <td></td>
           </tr>
         {% endif %}
         {% for file in files %}
           <tr>
             <td><i class="{{ file.type == "folder" or file.type == "symlink" ? "icon-folder-open" : "icon-file" }} icon-spaced"></i> <a href="
             {%- if file.type == "folder" or file.type == "symlink" -%}
             {{ path('tree', {repo: repo, commitishPath: branch ~ '/' ~ path ~ (file.type == "symlink" ? file.path : file.name)}) }}
             {%- else -%}
             {{ path('blob', {repo: repo, commitishPath: branch ~ '/' ~ path ~ (file.type == "symlink" ? file.path : file.name)}) }}
             {%- endif -%}
             ">{{ file.name }}</a></td>
             <td>{{ file.mode }}</td>
             <td>{% if file.size %}{{ (file.size / 1024) | number_format }} kb{% endif %}</td>
           </tr>
         {% endfor %}
       </tbody>
ffc9d555
     </table>
6933b58c
   {% else %}
     <p>This repository is empty.</p>
   {% endif %}
   {% if readme is defined and readme is not empty %}
     <div class="readme-view">
       <div class="md-header">
         <div class="meta">{{ readme.filename }}</div>
       </div>
       <div id="md-content">{{ readme.content }}</div>
     </div>
   {% endif %}
ffc9d555
 {% endblock %}