duck-booking-tool/booking/templates/front_template.html

15 lines
447 B
HTML
Raw Normal View History

2015-01-14 17:03:28 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Rubber Duck Booking Tool</title>
</head>
<body>
<h1>Rubber Duck Booking Tool</h1>
2014-12-23 09:28:43 +01:00
<a href="{% url 'booking:list' %}">Home</a>
2014-12-23 11:09:23 +01:00
<a href="{% url 'booking:terms' %}">Terms and Conditions</a>
2014-12-23 09:13:22 +01:00
<a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
2014-12-23 11:59:26 +01:00
<a href="{% url 'booking:disclaimer' %}">Disclaimer</a>
2015-01-14 17:03:28 +01:00
{% block body %}{% endblock %}
</body>
</html>