Files
fundor333.com/layouts/partials/bridgy.html
Fundor333 5b24ae60e2 Add new photo series "Minature on a Shelf" with accompanying metadata
- Created index.md for the photo series featuring miniatures with themes of undead and Egypt.
- Added 7 images with detailed Exif metadata in JSON format, documenting camera settings and conditions for each shot.
- Captured on May 1, 2025, showcasing the artistic use of natural light and intricate paintwork on miniatures.
2025-07-30 00:21:40 +02:00

32 lines
1.1 KiB
HTML

{{ range .Site.Params.bridgy }}
<a href='https://brid.gy/publish/{{.}}'></a>
{{ end }}
{{ if ne .Type "micro"}}
<div style="display: none;" class="p-summary {{ range .Site.Params.bridgy }}e-bridgy-{{.}}-content {{ end }}">
{{ .Description }} {{ range .Params.tags }}#{{ . }} {{ end }} {{ range .Params.categories }}#{{ . }} {{ end }}
</div>
{{ end }}
{{ if eq .Type "micro"}}
<div style="display: none;" class="p-summary {{ range .Site.Params.bridgy }}e-bridgy-{{.}}-content {{ end }}">
{{ .Content }} {{ range .Params.tags }}#{{ . }} {{ end }} {{ range .Params.categories }}#{{ . }} {{ end }}
</div>
{{ end }}
{{ if eq .Type "photos"}}
<div style="display: none;" class="p-summary {{ range .Site.Params.bridgy }}e-bridgy-{{.}}-content {{ end }}">
{{ .Content }} {{ range .Params.tags }}#{{ . }} {{ end }} {{ range .Params.categories }}#{{ . }} {{ end }}
{{ with .Resources.ByType "image" }}
{{ range . }}
{{ $image := . }}
{{ if $image }}
<img loading="lazy" class="u-photo" src="{{ $image.Permalink }}"alt="{{ $.Description }}">
{{ end }}
{{ end }}
{{ end }}
</div>
{{ end }}