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

@ -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>