Photos WIP

This commit is contained in:
Eryn Wells 2022-10-19 07:38:26 -07:00
parent dd1e4ee40f
commit ae19e1a777
4 changed files with 119 additions and 72 deletions

View file

@ -1,44 +1,81 @@
:root { :root {
--photo-params-background: #ddd; --body-code-background-color: rgb(var(--dk-gray));
--photo-params-border-color: #aaa; --box-shadow-color: rgba(var(--dk-gray), 0.8);
}
@media (prefers-color-scheme: dark) { --heading-color: rgb(var(--white));
:root {
--photo-params-background: #444; --html-color: rgb(var(--white));
--photo-params-background: #777; --html-background-color: rgb(var(--black));
}
--photo-params-background-color: rgb(var(--dk-gray));
--photo-params-container-background-color: rgb(var(--sub-dk-gray));
--photo-params-color: rgb(var(--super-lt-gray));
--photo-params-border-color: rgb(var(--sub-dk-gray));
--platter-background-color: rgba(var(--black), var(--platter-background-opacity));
--separator-color: rgb(var(--dk-gray));
--twitter-icon: url(/icons/twitter-dark.svg);
--github-icon: url(/icons/github-dark.svg);
--instagram-icon: url(/icons/instagram-dark.svg);
--rss-icon: url(/icons/rss-dark.svg);
} }
ul.grid { main.photos.list {
align-items: center; display: inline-block;
display: flex; max-width: none;
flex-direction: row; margin: var(--body-item-spacing) 0;
flex-wrap: wrap; padding: 0 var(--body-item-spacing);
gap: 5px; width: 100%;
justify-content: flex-start; }
main.photos.list ul.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 0.8rem;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
@media (max-width: 415px) {
.photos .grid li { .photos ul.grid {
display: block; grid-template-columns: repeat(2, 1fr);
height: 210px; }
list-style: none;
width: 210px;
} }
.grid li img { .photos .grid li {
border-radius: 0.5rem; line-height: 0;
list-style: none;
}
.photos .grid li a {
}
.photos .grid li img {
border-radius: 3px;
} }
.photo-params { .photo-params {
background-color: var(--photo-params-background); width: 100%;
}
.photo-params .container {
display: block;
background-color: var(--photo-params-container-background-color);
border-radius: 10px;
margin: var(--body-item-spacing) auto;
padding: calc(var(--body-item-spacing) / 2);
width: 66%;
}
.photo-params table {
background-color: var(--photo-params-background-color);
color: var(--photo-params-color);
border-collapse: collapse; border-collapse: collapse;
border-radius: 6px; border-radius: 6px;
margin: 1rem auto;
table-layout: fixed; table-layout: fixed;
text-align: center; text-align: center;
width: 66%; width: 100%;
} }
.photo-params thead td { .photo-params thead td {
@ -84,7 +121,7 @@ ul.grid {
.photo-params.debug thead { .photo-params.debug thead {
font-size: 2rem; font-size: 2rem;
font-weight: bold; font-weight: bold;
border-bottom: 2px solid var(--dark); border-bottom: 2px solid rgb(var(--dk-gray));
} }
.photo-params.debug { .photo-params.debug {

View file

@ -1,4 +1,6 @@
<table class="photo-params"> <div class="photo-params">
<div class="container">
<table>
<thead> <thead>
<td class="make-model" colspan=4>{{ .Tags.Make }} {{ .Tags.Model }}</td> <td class="make-model" colspan=4>{{ .Tags.Make }} {{ .Tags.Model }}</td>
</thead> </thead>
@ -25,3 +27,5 @@
<td class="exposure-time">{{ with .Tags.ExposureTime }}{{ . }} s{{ end }}</td> <td class="exposure-time">{{ with .Tags.ExposureTime }}{{ . }} s{{ end }}</td>
</tr> </tr>
</table> </table>
</div>
</div>

View file

@ -5,11 +5,9 @@
{{ define "main" }} {{ define "main" }}
<section class="photos"> <section class="photos">
<ul class="grid"> <ul class="grid">
{{- range .Pages -}} {{- $pages = .Paginate (first 50 .Pages.ByDate) -}}
{{- $thumbnailResource := (index (.Resources.ByType "image") 0) -}} {{- range $pages.ByDate -}}
{{- $thumbnail := $thumbnailResource.Fit "600x600" -}} {{- .Render "li_thumbnail_in_grid" -}}
{{- $thumbnail := $thumbnail.Crop "600x600" -}}
<li><a href="{{ .RelPermalink }}" title="{{ .Title }}"><img src="{{ $thumbnail.RelPermalink }}"></a></li>
{{- end -}} {{- end -}}
</ul> </ul>
</section> </section>

View file

@ -1,3 +1,7 @@
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }} {{ define "main" }}
<article class="post-single"> <article class="post-single">
<nav class="post-nav"> <nav class="post-nav">
@ -44,3 +48,7 @@
</article> </article>
{{ end }} {{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}