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 %} {% block title %}About Us{% endblock %}

View File

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

View File

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

View File

@ -1,4 +1,4 @@
{% extends 'templates/default.php' %} {% extends 'templates/default.twig' %}
{% block javascripts %} {% block javascripts %}
<script type="text/javascript" src="/js/modules/music-player.js"></script> <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 %} {% block title %}Show Schedule{% endblock %}

View File

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