33 lines
787 B
Cheetah
33 lines
787 B
Cheetah
{{ define "layout" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>S3 Manager</title>
|
|
|
|
<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">
|
|
|
|
<link rel="stylesheet" href="/static/css/material-fonts.css" />
|
|
<link rel="stylesheet" href="/static/css/materialize.min.css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "content" . }}
|
|
|
|
<script
|
|
src="/static/js/jquery-3.6.0.min.js"
|
|
></script>
|
|
<script src="/static/js/materialize.min.js"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('.dropdown-trigger').dropdown();
|
|
$('.modal').modal();
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
{{ end }}
|