merge index and explorer views

This commit is contained in:
tdurieux
2021-04-21 18:15:29 +02:00
parent a6baf39970
commit 5d2da5a93a
13 changed files with 1641 additions and 1676 deletions
+20
View File
@@ -0,0 +1,20 @@
<div class="container-fluid h-100">
<div class="row h-100">
<div class="leftCol shadow p-1 overflow-auto" ng-show="files">
<tree class="files" file="files"></tree>
</div>
<div class="col-md h-100 overflow-auto p-0 d-flex flex-column">
<nav aria-label="breadcrumb">
<ol class="breadcrumb shadow paths">
<li class="breadcrumb-item" ng-repeat="p in paths" ng-bind="p">
Loading...
</li>
</ol>
</nav>
<loc stats="stats" ng-if="stats"></loc>
<div class="align-items-stretch h-100 w-100 overflow-auto">
<ng-include src="'./partials/pageView.htm'"></ng-include>
</div>
</div>
</div>
</div>