Moved views from .php extension to .twig

This commit is contained in:
Gregory Ballantine 2016-11-18 10:25:02 -05:00
parent 03446c0cbd
commit 803e33fa6a
8 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %}
{% extends 'templates/default.twig' %}
{% block title %}About Us{% endblock %}
@ -9,7 +9,7 @@
</div>
<div class="about-band col-xs-12">
<h2>About the Band</h2><br/>
<p>
When one thinks of pioneers in rock music, Beethoven might not be the first name to roll off the tongue. However, as a 12 year old Wyatt Hamilton (Lead Vocals/Guitar) jammed out “Ode to Joy” in his middle school guitar class, he set the course for the inception of Halftone. Joining up with Andrew Hall (Bass/Vocals), Greg Ballantine (Drums/Vocals) and Zakk Vigneri (Guitar/Vocals), this alternative and punk rock influenced quartet has already made an impact in the Maryland music scene.
</p><br />
@ -19,15 +19,15 @@
</p><br />
<p>
Halftone has already played to large crowds at venues such as Rams Head Live, Ottobar and Fish Head Cantina. They also participated in the 16th annual Anne Arundel County High School Battle of the Bands at Maryland Hall, and returned the following year to perform as the showcase act.
Halftone has already played to large crowds at venues such as Rams Head Live, Ottobar and Fish Head Cantina. They also participated in the 16th annual Anne Arundel County High School Battle of the Bands at Maryland Hall, and returned the following year to perform as the showcase act.
</p><br />
<p>
Their debut EP, “Opting Out”, was produced by Jerome Maffeo (Jimmies Chicken Shack) and singer/songwriter, Eric James (formerly of vs. The Earth) and is available now on iTunes. Their single “Elsewhere” has received radio airplay on WIYY (98 Rock, Baltimore).
</p><br />
<p>
“Its refreshing to find a young band that strikes such a perfect balance between showmanship and musicianship and that understands what it means to work hard to build a following”, remarks co-producer Eric James.
“Its refreshing to find a young band that strikes such a perfect balance between showmanship and musicianship and that understands what it means to work hard to build a following”, remarks co-producer Eric James.
</p><br />
<p>
@ -35,7 +35,7 @@
</p>
</div>
</header>
<div id="about-content" class="row">
<section class="col-md-6 col-xs-12">
<div class="thumbnail shadow-1">

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %}
{% extends 'templates/default.twig' %}
{% block title %}Contact Us{% endblock %}
@ -6,7 +6,7 @@
<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>

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %}
{% extends 'templates/default.twig' %}
{% block title %}Home{% endblock %}

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %}
{% extends 'templates/default.twig' %}
{% block javascripts %}
<script type="text/javascript" src="/js/modules/music-player.js"></script>

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %}
{% extends 'templates/default.twig' %}
{% block title %}Show Schedule{% endblock %}
@ -50,6 +50,6 @@
</tbody>
</table>
</div>
<!--<script type="text/javascript" src="/js/bit.js"></script>-->
{% endblock %}

View File

@ -16,12 +16,12 @@
<body>
<div id="wrapper">
<div class="container">
{% include 'templates/partials/header.php' %}
{% include 'templates/partials/header.twig' %}
{% block content %}{% endblock %}
</div>
</div>
{% include 'templates/partials/footer.php' %}
{% include 'templates/partials/footer.twig' %}
</body>
</html>