diff --git a/gallery/templates/gallery/album_detail.html b/gallery/templates/gallery/album_detail.html index 4e107bd..24c9d70 100644 --- a/gallery/templates/gallery/album_detail.html +++ b/gallery/templates/gallery/album_detail.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base_dark.html" %} {% load static %} diff --git a/gallery/templates/gallery/album_list.html b/gallery/templates/gallery/album_list.html index 72d1e60..2d1b405 100644 --- a/gallery/templates/gallery/album_list.html +++ b/gallery/templates/gallery/album_list.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base_dark.html" %} {% load static %} @@ -8,7 +8,6 @@ {% block content %} -
{% for album in album_list %}
@@ -25,10 +24,8 @@
{% endfor %} - - - - {% include "./partials/pagination.html" %} + +{% include "./partials/pagination.html" %} {% endblock %} \ No newline at end of file diff --git a/gallery/templates/gallery/main.html b/gallery/templates/gallery/main.html index 125753a..691afed 100644 --- a/gallery/templates/gallery/main.html +++ b/gallery/templates/gallery/main.html @@ -1,7 +1,7 @@ -{% extends "base.html" %} +{% extends "base_dark.html" %} -{% block title %} Galleria {% endblock %} +{% block title %} Gallery {% endblock %} {% block content %} diff --git a/gallery/templates/gallery/partials/pagination.html b/gallery/templates/gallery/partials/pagination.html index 5f63a44..1d1c226 100644 --- a/gallery/templates/gallery/partials/pagination.html +++ b/gallery/templates/gallery/partials/pagination.html @@ -1,13 +1,13 @@ {% load link_tags %} {% if page_obj.has_other_pages %} -
+
diff --git a/gallery/templates/gallery/photo_detail.html b/gallery/templates/gallery/photo_detail.html index f8cf95d..0842948 100644 --- a/gallery/templates/gallery/photo_detail.html +++ b/gallery/templates/gallery/photo_detail.html @@ -1,7 +1,7 @@ -{% extends "base.html" %} +{% extends "base_dark.html" %} -{% block title %} Gallery : Photo {% endblock %} +{% block title %} Gallery : Photo : {{ photo.slug }} {% endblock %} diff --git a/gallery/templates/gallery/photo_list.html b/gallery/templates/gallery/photo_list.html index 56a00b8..44ef8b1 100644 --- a/gallery/templates/gallery/photo_list.html +++ b/gallery/templates/gallery/photo_list.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base_dark.html" %} @@ -8,7 +8,7 @@ {% block content %} {% load link_tags %} -