summaryrefslogtreecommitdiff
path: root/templates/layout.html
blob: a228982d54787c8dda01fde64a89e1b2ba359c3b (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>{{title}}</title>
  <link rel="stylesheet" href="/css/skeleton.css">
  <link rel="stylesheet" href="/css/home.css">
  {{styles}}
</head>
<body>
  <header>
    <h2>File Upload</h2>
    <section class="status">
      <p> </p>
    </section>
  </header>
  <main>
    <center>- - -</center>
    {{content}}
    <center>- - -</center>
  </main>
  {{scripts}}
</body>
</html>