aboutsummaryrefslogtreecommitdiff
path: root/src/templates/viewHome.html
blob: bd841d2d67491eeb3256c70298450ca3f8a891a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{ define "main" }}
{{ $location := .File.URI }}
{{ $path := .File.Path }}
<header>
	<a href="/"><h1>Cloud Maker</h1></a>
	<a href="/profile"><img src="/static/icons/bs/person-circle.svg"></a>
</header>

<form id="device_manager" name="device_manager" method="POST">

	<div class="drives">
	{{ range .File.Data }}
	{{ $name := .Info.Name }}
	<a class="drive" href="/view/{{$location}}/{{$name}}">
		<span><img src="/static/icons/bs/hdd.svg"></span>
		<span>
			<div>{{ $name }}</div>
			<div class="desc">drive</div>
		</span>
	</a>
	{{ end }}
	</div>

	{{ if not .FileCount }}
	<p class="info">No Drives Mounted.</p>
	{{ end }}

</form>
{{ end }}