summaryrefslogtreecommitdiff
path: root/site/templates/layout.html
blob: c38948efd3d802da727d25cbddd9168ac4920b70 (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
26
27
28
29
<!doctype html>
<html>
<head>
  <title>Megapixels</title>
  <link rel='stylesheet' href='/assets/css/css.css' />
</head>
<body>
  <header>
    <h1>
      <div id="logo"></div>
      Megapixels
      <span class='sub'>The Darkside of Datasets</span>
    </h1>
    <div class='links'>
      <a href="/search">Face Search</a>
      <a href="/datasets">Datasets</a>
      <a href="/blog">Blog</a>
      <a href="/about">About</a>
    </div>
  </header>
  <div class="content">
    {% block content %}{% endblock %}
  </div>
  <footer>
    <a href="/about">How to use MegaPixels</a>
    <a href="/pages/terms">Terms of Use & Privacy</a>
  </footer>
</body>
</html>