diff options
| author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-06-10 16:45:39 +0200 |
|---|---|---|
| committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-06-10 16:45:39 +0200 |
| commit | ef266b315341440006ac504dc24b688cdcdc2d51 (patch) | |
| tree | ec6ecd0eb3282dd912b82fbd41b2a1bb8df38977 /templates/base_simple.html | |
| parent | 934c141409dc632b2739d062a4badcbf87144774 (diff) | |
Start on the add tag and add category bits
Diffstat (limited to 'templates/base_simple.html')
| -rw-r--r-- | templates/base_simple.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/base_simple.html b/templates/base_simple.html new file mode 100644 index 0000000..9af40b8 --- /dev/null +++ b/templates/base_simple.html @@ -0,0 +1,26 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta name="ROBOTS" content="INDEX, FOLLOW" /> + + <title>{% block title %}Mail app{% endblock %}</title> + <meta name="author" content="" /> + + <meta name="dc.language" content="en" /> + + <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css" /> + + {% block additional_headers %} + {% endblock %} +</head> + +<body> + + <div class="content"> + {% block content %} + {% endblock %} + </div> + +</body> +</html> |
