14 lines
		
	
	
		
			376 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|         <title>Rubber Duck Booking Tool</title>
 | |
|     </head>
 | |
|     <body>
 | |
|         <h1>Rubber Duck Booking Tool</h1>
 | |
|         <a href="{% url 'index' %}">Home</a>
 | |
|         <a href="{% url 'booking:terms' %}">Terms and Conditions</a>
 | |
|         <a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
 | |
| {% block body %}{% endblock %}
 | |
|     </body>
 | |
| </html>
 |