2016-12-18 22:54:21 +01:00
|
|
|
{{ define "layout" }}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2017-09-28 15:34:46 +02:00
|
|
|
<title>S3 Manager</title>
|
|
|
|
|
2017-05-08 23:07:07 +02:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2016-12-18 22:54:21 +01:00
|
|
|
|
2022-04-30 12:33:46 +02:00
|
|
|
<link rel="stylesheet" href="/static/css/material-fonts.css" />
|
|
|
|
<link rel="stylesheet" href="/static/css/materialize.min.css" />
|
2016-12-18 22:54:21 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2017-05-08 23:07:07 +02:00
|
|
|
{{ template "content" . }}
|
2016-12-18 22:54:21 +01:00
|
|
|
|
2018-05-22 22:56:01 +02:00
|
|
|
<script
|
2022-04-30 12:33:46 +02:00
|
|
|
src="/static/js/jquery-3.6.0.min.js"
|
2018-05-22 22:56:01 +02:00
|
|
|
></script>
|
2022-04-30 12:33:46 +02:00
|
|
|
<script src="/static/js/materialize.min.js"></script>
|
2017-05-08 23:07:07 +02:00
|
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
2019-08-18 14:26:29 +02:00
|
|
|
$('.dropdown-trigger').dropdown();
|
2017-05-08 23:07:07 +02:00
|
|
|
$('.modal').modal();
|
|
|
|
});
|
|
|
|
</script>
|
2016-12-18 22:54:21 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
{{ end }}
|