1
0
Fork 0
file-manager/views/shell.handlebars

23 lines
741 B
Handlebars
Raw Normal View History

2018-03-11 23:15:39 +08:00
{{> navbar}}
2018-12-08 21:58:09 +08:00
<div style="padding-top: 56px; padding-bottom: 56px; height: 100vh">
2021-05-07 20:57:15 +08:00
<main id="shell" style="height: 100%; background: #000" data-path="/{{path}}"></main>
2018-03-11 23:15:39 +08:00
</div>
2021-05-08 01:54:37 +08:00
<nav class="navbar navbar-light bg-light fixed-bottom">
<div class="container-fluid px-2">
<div class="d-flex">
<div class="btn-group me-2" role="group">
<a class="btn btn-danger" href="/{{path}}" id="shell-close">
{{octicon "chevron-left"}}
<span class="d-none d-sm-inline">Exit shell</span>
</a>
<a class="btn btn-warning" href="@shell" target="_blank" title="Open a new shell tab" data-bs-placement="top">
{{octicon "terminal"}}
<span class="d-none d-sm-inline">New shell</span>
</a>
</div>
</div>
2021-05-07 20:57:15 +08:00
</div>
2018-03-11 23:15:39 +08:00
</nav>