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

19 lines
708 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>
2018-03-12 19:17:47 +08:00
<nav class="navbar navbar-light bg-light fixed-bottom p-1 px-2">
2021-05-07 20:57:15 +08:00
<div class="btn-group m-1" role="group">
<a class="btn btn-danger" href="/{{path}}" id="shell-close" data-placement="top" title="Close and return to folder">
{{octicon "chevron-left"}}
<span class="d-none d-sm-inline">Close shell</span>
</a>
<a class="btn btn-warning" href="@shell" target="_blank" data-placement="top" title="Open shell in new tab">
{{octicon "terminal"}}
<span class="d-none d-sm-inline">New shell</span>
</a>
</div>
2018-03-11 23:15:39 +08:00
</nav>