2017-06-25 08:11:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-06-25 13:24:26 +00:00
|
|
|
{{ $absURL := .BaseURL }}
|
2017-06-25 08:11:25 +00:00
|
|
|
<head>
|
|
|
|
<title>{{.Name}}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
|
|
|
<meta charset="utf-8">
|
2017-06-25 13:24:26 +00:00
|
|
|
<link rel="stylesheet" href="{{ .BaseURL }}/_internal/css/normalize.css">
|
|
|
|
<link rel="stylesheet" href="{{ .BaseURL }}/_internal/css/fonts.css">
|
|
|
|
<link rel="stylesheet" href="{{ .BaseURL }}/_internal/css/styles.css">
|
2017-06-25 08:11:25 +00:00
|
|
|
{{- if ne .User.StyleSheet "" -}}
|
|
|
|
<style>{{ CSS .User.StyleSheet }}</style>
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var user = JSON.parse('{{ Marshal .User }}'),
|
2017-06-25 13:24:26 +00:00
|
|
|
webdavURL = "{{ .WebDavURL }}",
|
|
|
|
baseURL = "{{.BaseURL}}",
|
|
|
|
prefixURL = "{{ .PrefixURL }}";
|
2017-06-25 08:11:25 +00:00
|
|
|
</script>
|
2017-06-25 13:24:26 +00:00
|
|
|
<script src="{{ .BaseURL }}/_internal/js/common.js" defer></script>
|
2017-06-25 08:11:25 +00:00
|
|
|
{{- if .IsDir }}
|
2017-06-25 13:24:26 +00:00
|
|
|
<script src="{{ .BaseURL }}/_internal/js/listing.js" defer></script>
|
2017-06-25 08:11:25 +00:00
|
|
|
{{- else }}
|
2017-06-25 13:24:26 +00:00
|
|
|
<script src="{{ .BaseURL }}/_internal/js/vendor/ace/src-min/ace.js" defer></script>
|
|
|
|
<script src="{{ .BaseURL }}/_internal/js/vendor/form2js.js" defer></script>
|
|
|
|
<script src="{{ .BaseURL }}/_internal/js/editor.js" defer></script>
|
2017-06-25 08:11:25 +00:00
|
|
|
{{- end }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<div id="top-bar">
|
|
|
|
<div><p>File Manager</p></div>
|
|
|
|
<div id="search">
|
|
|
|
<i class="material-icons" title="Search">search</i>
|
|
|
|
<input type="text" aria-label="Write here to search" placeholder="Search or execute a command...">
|
|
|
|
<div>
|
|
|
|
<div>Loading...</div>
|
|
|
|
<p><i class="material-icons spin">autorenew</i></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="action" id="logout" tabindex="0" role="button" aria-label="Log out">
|
|
|
|
<i class="material-icons" title="Logout">exit_to_app</i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="bottom-bar">
|
|
|
|
<div>
|
|
|
|
{{- if ne .Name "/"}}
|
|
|
|
<div data-dropdown tabindex="0" aria-label="Previous" role="button" class="action" id="previous">
|
|
|
|
<i class="material-icons" title="Previous">subdirectory_arrow_left</i>
|
|
|
|
<ul class="dropdown" id="breadcrumbs">
|
|
|
|
{{- range $item := .BreadcrumbMap }}
|
|
|
|
<a tabindex="0" href="{{ $absURL }}{{ $item.URL }}"><li>{{ $item.Name }}</li></a>
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{ if ne .Name "/"}}<p id="current-file">{{ .Name }}</p>{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="actions{{ if .IsDir }} disabled{{ end }}" id="file-only">
|
|
|
|
{{- if and (not .IsDir) (.User.AllowEdit) }}
|
|
|
|
{{- if .Editor}}
|
|
|
|
|
|
|
|
{{- if eq .Data.Mode "markdown" }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Preview" class="action" id="preview" onclick="notImplemented(event);">
|
|
|
|
<i class="material-icons" title="Preview">remove_red_eye</i>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if eq .Data.Visual true }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Toggle edit source" class="action" id="edit-source">
|
|
|
|
<i class="material-icons" title="Toggle edit source">code</i>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
<div tabindex="0" role="button" aria-label="Save" class="action" id="save">
|
|
|
|
<i class="material-icons" title="Save">save</i>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if and (.User.AllowEdit) (.IsDir) }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Move" class="action" id="move">
|
|
|
|
<i class="material-icons" title="Move">forward</i>
|
|
|
|
<span>Move file</span>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if and .IsDir .User.AllowEdit }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Edit" class="action" id="rename">
|
|
|
|
<i class="material-icons" title="Edit">mode_edit</i>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if and .User.AllowEdit .IsDir }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Delete" class="action" id="delete">
|
|
|
|
<i class="material-icons" title="Delete">delete</i><span>Delete</span>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div tabindex="0" role="button" aria-label="Moew" class="action mobile-only" id="more">
|
|
|
|
<i class="material-icons">more_vert</i>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="actions" id="main-actions">
|
|
|
|
{{- if .IsDir }}
|
|
|
|
<div role="button" class="action" id="view">
|
|
|
|
{{- if eq .Display "mosaic" }}
|
|
|
|
<a tabindex="0" aria-label="Switch to list" title="Switch View" href="?display=list">
|
|
|
|
<i class="material-icons">view_list</i><span>Switch view</span>
|
|
|
|
</a>
|
|
|
|
{{- else }}
|
|
|
|
<a tabindex="0" aria-label="Switch to Mosaic" title="Switch View" href="?display=mosaic">
|
|
|
|
<i class="material-icons">view_module</i><span>Switch view</span>
|
|
|
|
</a>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div tabindex="0" role="button" aria-label="Select multiple" class="action mobile-only" id="multiple-selection-activate">
|
|
|
|
<i class="material-icons">check_circle</i><span>Select</span>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if and (.User.AllowNew) (.IsDir) }}
|
|
|
|
<div tabindex="0" aria-label="Upload" role="button" class="action" id="upload">
|
|
|
|
<i class="material-icons" title="Upload">file_upload</i><span>Upload</span>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if and .User.AllowEdit (not .IsDir) }}
|
|
|
|
<div tabindex="0" role="button" aria-label="Delete" class="action" id="delete">
|
|
|
|
<i class="material-icons" title="Delete">delete</i><span>Delete</span>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
<div {{ if .IsDir }}data-dropdown{{ end }} tabindex="0" role="button" aria-label="Download" class="action" id="download">
|
|
|
|
{{- if not .IsDir}}<a href="?download=true">{{ end }}
|
|
|
|
<i class="material-icons" title="Download">file_download</i><span>Download</span>
|
|
|
|
{{- if not .IsDir}}</a>{{ end }}
|
|
|
|
|
|
|
|
{{- if .IsDir }}
|
|
|
|
<ul class="dropdown" id="download-drop">
|
|
|
|
<a tabindex="0" aria-label="Download as Zip" data-format="zip" href="?download=zip"><li>zip</li></a>
|
|
|
|
<a tabindex="0" aria-label="Download as Tar" data-format="tar" href="?download=tar"><li>tar</li></a>
|
|
|
|
<a tabindex="0" aria-label="Download as TarGz" data-format="targz" href="?download=targz"><li>tar.gz</li></a>
|
|
|
|
<a tabindex="0" aria-label="Download as TarBz2" data-format="tarbz2" href="?download=tarbz2"><li>tar.bz2</li></a>
|
|
|
|
<a tabindex="0" aria-label="Download as TarXz" data-format="tarbz2" href="?download=tarxz"><li>tar.xz</li></a>
|
|
|
|
</ul>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div tabindex="0" role="button" aria-label="Info" class="action" id="info">
|
|
|
|
<i class="material-icons" title="Info">info</i><span>Info</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="click-overlay"></div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div id="multiple-selection" class="mobile-only">
|
|
|
|
<p>Multiple selection enabled</p>
|
|
|
|
<div tabindex="0" role="button" class="action" id="multiple-selection-cancel">
|
|
|
|
<i class="material-icons" title="Clear">clear</i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
{{- template "content" . }}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<div class="overlay"></div>
|
|
|
|
|
|
|
|
{{- if and (.User.AllowNew) (.IsDir) }}
|
|
|
|
<div class="floating">
|
|
|
|
<div tabindex="0" role="button" class="action" id="new">
|
|
|
|
<i class="material-icons" title="New file or directory">add</i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
2017-06-25 21:43:43 +00:00
|
|
|
{{ template "templates" . }}
|
2017-06-25 08:11:25 +00:00
|
|
|
|
|
|
|
<footer>Served with <a rel="noopener noreferrer" href="https://caddyserver.com">Caddy</a> and <a rel="noopener noreferrer" href="https://github.com/hacdias/caddy-filemanager">File Manager</a>.</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|