diff --git a/app/templates/album/index.html b/app/templates/album/index.html
index 2a9d034..ac55650 100644
--- a/app/templates/album/index.html
+++ b/app/templates/album/index.html
@@ -8,11 +8,14 @@
{% for album in albums %}
-
-
+ {% if album.photo_set.first %}
+
+ {% else %}
+
+ {% endif %}
-
+ {{ album.title }}
+ {{ album.title }}
{% endfor %}
{% if user.is_authenticated %}
-
diff --git a/app/templates/album/photos.html b/app/templates/album/photos.html
index 774beea..20e65a0 100644
--- a/app/templates/album/photos.html
+++ b/app/templates/album/photos.html
@@ -21,12 +21,16 @@
{% endif %}
+
+ {% if album.description %}
+ {{ album.description }}
+ {% endif %}
+
{% for photo in photos %}
- -
-
-
-
+ -
+
+ {{ photo.title }}
{% endfor %}
{% if is_my %}
diff --git a/app/templates/base.html b/app/templates/base.html
index f883477..d767e17 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -21,7 +21,7 @@
diff --git a/assets/style.scss b/assets/style.scss
index 189e920..38dabd9 100644
--- a/assets/style.scss
+++ b/assets/style.scss
@@ -16,19 +16,6 @@ a {
color: black;
}
-%link-extended {
- &::after {
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- content: "";
-
- z-index: 10;
- }
-}
-
.app {
margin: 100px auto;
}
@@ -49,8 +36,9 @@ a {
.gallery__entry {
&::after {
- padding-bottom: 56.25%;
+ padding-bottom: 66.66%;
content: "";
+ display: block;
}
width: calc(33.33% - 1rem);
@@ -76,8 +64,6 @@ a {
.album {
position: relative;
- display: flex;
- flex-direction: column-reverse;
}
.album__thumbnail, .photo__thumbnail {
@@ -87,12 +73,33 @@ a {
background-color: #ddd;
}
+.album__thumbnail--placeholder {
+ position: absolute;
+ left: 0; right: 0; top: 0; bottom: 0;
+ z-index: -1;
+ width: 100%;
+ background-color: #ddd;
+
+ &::after {
+ content: "Brak zdjęć";
+ text-align: center;
+ position: absolute;
+ top: 20px;
+ left: 0;
+ right: 0;
+ font-weight: bold;
+ }
+}
+
.album__header {
bottom: 0;
background-color: rgba(black, 0.5);
padding: 1rem;
text-align: center;
z-index: 1;
+ position: absolute;
+ left: 0;
+ right: 0;
}
.album__title {
@@ -100,8 +107,6 @@ a {
color: white;
text-shadow: 0 0 2px rgba(black, 0.5);
- @extend %link-extended;
-
&:hover {
color: white;
}