aboutsummaryrefslogtreecommitdiff
path: root/codemash/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'codemash/templates/index.html')
-rw-r--r--codemash/templates/index.html18
1 files changed, 8 insertions, 10 deletions
diff --git a/codemash/templates/index.html b/codemash/templates/index.html
index ba0a13a..29c949d 100644
--- a/codemash/templates/index.html
+++ b/codemash/templates/index.html
@@ -1,10 +1,8 @@
1<!DOCTYPE html> 1{% extends "base.html" %}
2<html> 2
3 <head> 3{% block title %}Hello{% endblock %}
4 <title>Hello Codemash!</title> 4
5 </head> 5{% block main %}
6 <body> 6 <h1>It worked!</h1>
7 <h1>It worked!</h1> 7 <h2>Congratulations on your second Django-powered page.</h2>
8 <h2>Congratulations on your second Django-powered page.</h2> 8{% endblock %}
9 </body>
10</html>