Initial Commit
This commit is contained in:
25
templates/index.html
Normal file
25
templates/index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
|
||||
<!--Import Google Icon Font-->
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<!--Import materialize.css-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
|
||||
|
||||
<!--Let browser know website is optimized for mobile-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
|
||||
<title>Q1</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Q1: A Simple S3 Browser</h1>
|
||||
<ul>
|
||||
{% for bucket in buckets %}
|
||||
<li><a href="/browse/{{bucket}}">{{bucket}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<script type="text/javascript" src="js/materialize.min.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user