aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: ff76c3ece58e83abb85dec1b280568b0075bd4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block title %}Hello Codemash{% endblock %}

{% block content %}
<h1>Hello Codemash</h1>
<ul>
    <li><a href="{% url 'contact:form' %}">Contact Us</a></li>
</ul>
<p>You've just created your first Django page. Pretty cool, eh?</p>
{% endblock %}