aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html27
1 files changed, 11 insertions, 16 deletions
diff --git a/templates/index.html b/templates/index.html
index 0ea840f..ff76c3e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,16 +1,11 @@
1<!DOCTYPE html> 1{% extends "base.html" %}
2<html> 2
3 <head> 3{% block title %}Hello Codemash{% endblock %}
4 <meta charset="utf-8"> 4
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 5{% block content %}
6 <title>Hello Codemash</title> 6<h1>Hello Codemash</h1>
7 <meta name="viewport" content="width=device-width"> 7<ul>
8 </head> 8 <li><a href="{% url 'contact:form' %}">Contact Us</a></li>
9 <body> 9</ul>
10 <h1>Hello Codemash</h1> 10<p>You've just created your first Django page. Pretty cool, eh?</p>
11 <ul> 11{% endblock %}
12 <li><a href="{% url 'contact:form' %}">Contact Us</a></li>
13 </ul>
14 <p>You've just created your first Django page. Pretty cool, eh?</p>
15 </body>
16</html>