diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/about.html | 4 | ||||
| -rw-r--r-- | templates/layout.html | 27 | ||||
| -rw-r--r-- | templates/paper.html | 4 | ||||
| -rw-r--r-- | templates/terms.html | 4 |
4 files changed, 39 insertions, 0 deletions
diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 00000000..6699bd0f --- /dev/null +++ b/templates/about.html @@ -0,0 +1,4 @@ +{% extends 'layout.html' %} + +{% block content %} +{% endblock %} diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 00000000..67502257 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,27 @@ +<!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> + {% block content %}{% endblock %} + <footer> + <a href="/about">How to use MegaPixels</a> + <a href="/pages/terms">Terms of Use & Privacy</a> + </footer> +</body> +</html>
\ No newline at end of file diff --git a/templates/paper.html b/templates/paper.html new file mode 100644 index 00000000..6699bd0f --- /dev/null +++ b/templates/paper.html @@ -0,0 +1,4 @@ +{% extends 'layout.html' %} + +{% block content %} +{% endblock %} diff --git a/templates/terms.html b/templates/terms.html new file mode 100644 index 00000000..6699bd0f --- /dev/null +++ b/templates/terms.html @@ -0,0 +1,4 @@ +{% extends 'layout.html' %} + +{% block content %} +{% endblock %} |
