diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2012-08-16 20:18:52 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2012-08-16 20:18:52 +0300 |
| commit | bc11283c5c80701fd28ee7fdd936ff78794bf1fb (patch) | |
| tree | ebfee8e0c50e29b49c4f13f6900d90faf71309fc /templates | |
initial commit
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/base.html | 27 | ||||
| -rw-r--r-- | templates/index.html | 4 |
2 files changed, 31 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..be8e5ed --- /dev/null +++ b/templates/base.html @@ -0,0 +1,27 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"> + + <title>[Title]</title> + + <meta name="description" content=""> + <meta name="keywords" content=""> + <meta name="author" content=""> + + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="robots" content="all"> + + <link rel="canonical" href=""> + + <link rel="stylesheet" href="/static/css/bootstrap.min.css" type="text/css"> + <link rel="stylesheet" href="/static/css/main.css" type="text/css"> +</head> + +<body lang="en"> + <div id="main" class="container" role="main"> + {% block content %} + {% endblock %} + </div> +</body> +</html> diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..357a399 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,4 @@ +{% extends 'base.html' %} + +{% block content %} +{% endblock %} |
