Files
anonymous_github/public/partials/explorer.htm
2021-08-13 08:26:23 +02:00

31 lines
922 B
HTML

<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="repository menu">
<ol class="breadcrumb shadow paths">
<li class="breadcrumb-item" ng-repeat="p in paths" ng-bind="p">
Loading...
</li>
</ol>
<a ng-href="{{url}}" target="__self" class="btn btn-primary"
>Download file</a
>
<a
ng-href="/api/repo/{{repoId}}/zip"
target="__self"
class="btn btn-primary"
>Download Repository</a
>
</nav>
<div class="align-items-stretch h-100 w-100 overflow-auto">
<ng-include src="'./partials/pageView.htm'"></ng-include>
</div>
</div>
</div>
</div>