diff --git a/content/photos/photos.css b/content/photos/photos.css index 9966fa6..0cb7d73 100644 --- a/content/photos/photos.css +++ b/content/photos/photos.css @@ -2,7 +2,6 @@ --photo-params-background: #ddd; --photo-params-border-color: #aaa; } - @media (prefers-color-scheme: dark) { :root { --photo-params-background: #444; @@ -21,7 +20,7 @@ ul.grid { padding: 0; } -.grid li { +.photos .grid li { display: block; height: 210px; list-style: none; diff --git a/layouts/photos/list.html b/layouts/photos/list.html index ec43345..5ef8c33 100644 --- a/layouts/photos/list.html +++ b/layouts/photos/list.html @@ -1,12 +1,20 @@ +{{ define "header" }} + {{ partial "header.html" . }} +{{ end }} + {{ define "main" }}
- +
{{ end }} + +{{ define "footer" }} + {{ partial "footer.html" . }} +{{ end }}