cockpit-navigator/navigator/navigator.html

51 lines
1.9 KiB
HTML
Raw Normal View History

2021-05-20 21:55:49 +02:00
<!doctype html>
<html>
<!--
Cockpit Samba Manager - Cockpit plugin for managing Samba.
Copyright (C) 2021 Josh Boudreau <jboudreau@45drives.com>
This file is part of Cockpit Samba Manager.
Cockpit Samba Manager is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Cockpit Samba Manager is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Cockpit Samba Manager. If not, see <https://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<title>Navigator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="../base1/cockpit.css" type="text/css" rel="stylesheet">
<link href="navigator.css" type="text/css" rel="stylesheet">
<script src="../base1/cockpit.js"></script>
<script src="../manifests.js"></script>
<script src="../*/po.js"></script>
<script defer src="navigator.js"></script>
</head>
<body>
<div class="flex-col outer-container">
<div class="flex-row">
2021-05-21 20:54:25 +02:00
<button class="pf-c-button pf-m-secondary" id="nav-up-dir-btn">&#129121;</button>
<div class="horizontal-spacer"></div>
2021-05-20 21:55:49 +02:00
<div class="navigation-bar" id="pwd">
/current/dir
</div>
<div class="horizontal-spacer"></div>
<button class="pf-c-button pf-m-primary">+</button>
</div>
<div class="vertical-spacer"></div>
<div class="flex-row inner-container">
<div class="contents-view" id="nav-contents-view"></div>
2021-05-20 21:55:49 +02:00
<div class="horizontal-spacer"></div>
<div class="info-column" id="nav-info-column"></div>
2021-05-20 21:55:49 +02:00
</div>
</div>
</body>
</html>