19 lines
617 B
PHP
19 lines
617 B
PHP
|
{% extends 'templates/default.php' %}
|
||
|
|
||
|
{% block title %}Contact Us{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section id="contact-header" class="row">
|
||
|
<h1>Contact Us</h1>
|
||
|
</section>
|
||
|
|
||
|
<section id="contact-info" class="row">
|
||
|
<div class="card shadow-1 container">
|
||
|
<p>For booking, press, promotion, or just to say "what's up?", you can shoot us an email at:</p>
|
||
|
<h3><a href="mailto:halftonetheband@gmail.com">halftonetheband@gmail.com</a></h3>
|
||
|
<hr />
|
||
|
<p>We accept many types of inquiries, and we're always glad to work with anyone if it means putting on a great show!</p>
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endblock %}
|