Spaces:
Running
Running
<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> |