2022-03-02 11:01:46 -05:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="vstack gap-3">
|
|
|
|
<div class="bg-light border rounded-3 p-2">
|
|
|
|
<div class="d-grid gap-2">
|
|
|
|
<div class="d-flex flex-row">
|
|
|
|
<a type="button" class="btn btn-outline-secondary text-start col-sm-1 ms-1 me-1" href="/serve/{{parent.0.path}}" role="button">
|
|
|
|
..
|
|
|
|
</a>
|
|
|
|
<a type="button" class="btn btn-outline-secondary text-start col-sm-1 ms-1 me-1" href="/logout" role="button">
|
|
|
|
Logout
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{#each ctx}}
|
|
|
|
<div class="d-flex flex-row">
|
|
|
|
{{#if is_file}}
|
2022-03-02 15:50:45 -05:00
|
|
|
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/file/{{path}}" role="button" style="overflow: hidden;">
|
2022-03-02 11:01:46 -05:00
|
|
|
<i class="bi bi-file-earmark"></i>
|
|
|
|
{{name}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
2022-03-02 15:50:45 -05:00
|
|
|
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/serve/{{path}}" role="button" style="overflow: hidden;">
|
2022-03-02 11:01:46 -05:00
|
|
|
<i class="bi bi-folder-fill"></i>
|
|
|
|
{{name}}
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|