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 %}
-
+
- Latest
- Top Liked
- Popular
diff --git a/static/css/muistox.css b/static/css/muistox.css
index 4bec60f..19430c7 100644
--- a/static/css/muistox.css
+++ b/static/css/muistox.css
@@ -6,6 +6,10 @@ body {
min-height: 50px;
}
+header {
+ margin-bottom: 0px;
+}
+
.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
margin: 0 10px 0 calc(10px - 4px);
}
\ No newline at end of file
diff --git a/templates/base_dark.html b/templates/base_dark.html
new file mode 100644
index 0000000..1e72e9c
--- /dev/null
+++ b/templates/base_dark.html
@@ -0,0 +1,89 @@
+
+
+
+
+ {% load static %}
+
+
+
+ {% block title %}Gallery{% endblock %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% block parallax %}{% endblock %}
+
+
+ {% block navbar %}
+
+
+
+
+
+
+ {% endblock %}
+
+
+
+
+
+ {% block content %} No Content {% endblock %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file