diff --git a/app/routes.php b/app/routes.php index ecb31d4..dd61d3c 100755 --- a/app/routes.php +++ b/app/routes.php @@ -5,5 +5,4 @@ require 'routes/index.php'; require 'routes/about.php'; require 'routes/contact.php'; require 'routes/home.php'; -//require 'routes/music.php'; require 'routes/shows.php'; diff --git a/app/views/music.twig b/app/views/music.twig deleted file mode 100755 index e290685..0000000 --- a/app/views/music.twig +++ /dev/null @@ -1,71 +0,0 @@ -{% extends 'templates/default.twig' %} - -{% block javascripts %} - - -{% endblock %} - -{% block title %}Music{% endblock %} - -{% block content %} - -
-

Music

-
- - -
- - - - -
-
- {{ albums[0].title }} -
-

{{ albums[0].title }}

- {% if albums[0].description %} -
-

{{ albums[0].description }}

- {% endif %} -
-
-
- - -
-
- -
- -
-
    - {% for song in songs %} -
  • - {{ song.track_order }}. {{ song.title }} -
  • - {% endfor %} -
-
-
-
- - -
- {% for album in albums %} - -
-
- {{ album.title }} -
-
{{ album.title }}
-
-
-
- {% endfor %} -
- -{% endblock %} diff --git a/app/views/templates/partials/header.twig b/app/views/templates/partials/header.twig index c626de4..cd3fd2d 100755 --- a/app/views/templates/partials/header.twig +++ b/app/views/templates/partials/header.twig @@ -19,11 +19,6 @@ -