30 lines
826 B
HTML
30 lines
826 B
HTML
{{ define "layout" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
|
|
|
|
<title>S3 Manager</title>
|
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "content" . }}
|
|
|
|
<script src="https://code.jquery.com/jquery-3.2.0.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('.modal').modal();
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
{{ end }}
|