File size: 410 Bytes
56a1b20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
  <head>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  </head>
  <body>
     <ol>
    {% for file in files %}
    <li>
        <a target=”_blank” href="{{ (request.path + '/' if request.path != '/' else '') + file }}">
            {{ (request.path + '/' if request.path != '/' else '') + file }}
        </a>
    </li>
    {% endfor %}
     </ol>
  </body>
  
</html>