aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--snakeplan/templates/base.html3
-rw-r--r--snakeplan/templates/projects/project_list.html2
2 files changed, 3 insertions, 2 deletions
diff --git a/snakeplan/templates/base.html b/snakeplan/templates/base.html
index e6042e6..d33c21f 100644
--- a/snakeplan/templates/base.html
+++ b/snakeplan/templates/base.html
@@ -1,3 +1,4 @@
1<!DOCTYPE html>
1<html> 2<html>
2 <head> 3 <head>
3 <title>{% block title %}SnakePlan{% endblock %}</title> 4 <title>{% block title %}SnakePlan{% endblock %}</title>
@@ -5,6 +6,8 @@
5 <link rel="stylesheet" href="/static/css/blueprint/print.css" type="text/css" media="print"> 6 <link rel="stylesheet" href="/static/css/blueprint/print.css" type="text/css" media="print">
6 </head> 7 </head>
7 <body> 8 <body>
9 <div class="container">
8 {% block content %}{% endblock %} 10 {% block content %}{% endblock %}
11 </div>
9 </body> 12 </body>
10</html> 13</html>
diff --git a/snakeplan/templates/projects/project_list.html b/snakeplan/templates/projects/project_list.html
index d668603..331d7c2 100644
--- a/snakeplan/templates/projects/project_list.html
+++ b/snakeplan/templates/projects/project_list.html
@@ -1,7 +1,6 @@
1{% extends "base.html" %} 1{% extends "base.html" %}
2 2
3{% block content %} 3{% block content %}
4
5<h1>Projects</h1> 4<h1>Projects</h1>
6 5
7<ol> 6<ol>
@@ -9,5 +8,4 @@
9 <li><a href="/p/project/{{project.id}}/iterations/">{{project.name}}</a></li> 8 <li><a href="/p/project/{{project.id}}/iterations/">{{project.name}}</a></li>
10 {% endfor %} 9 {% endfor %}
11</ol> 10</ol>
12
13{% endblock %} 11{% endblock %}