1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<html> <head> <title>Contents of directory {{ uri_path }}</title> <style> body { font-family: 'sans-serif'; font-size: 16px; line-height: 22px; margin: 16px; } a:hover { text-decoration: none; } a.real { color: #5758BB; } a.mount { color: #218c51; } </style> </head> <body> <h1>Contents of directory <code>{{ uri_path }}</code></h1> <ul>{{ entries }}</ul> <script src="{{ control_path }}/client.js" defer></script> </body> </html>