aboutsummaryrefslogtreecommitdiff
path: root/interface/admin_files.tmpl
blob: 76b63d5fb80aa82249cca8904535001d7b5e5e74 (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
30
31
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<meta name="robots" content="noindex,nofollow" />
		<title>cargohold</title>
		<link rel="stylesheet" href="/assets/cargohold.css" />
		<link rel="stylesheet" href="/assets/admin.css" />
		<link rel="icon" href="/assets/cargohold.ico" />
	</head>
	<body>
		<div id="header">
			cargohold - Administration
		</div>
		<div id="container">
			{% if message %}
				<div id="message">
					{{ message }}
				</div>
			{% endif %}
			<div id="dirlisting">
				{% for file in listing %}
					<div class="entry">
						<a class="file" href="#">{{ file.name }}</a>
					</div>
				{% endfor %}
			</div>
		</div>
	</body>
</html>