First cut at a photos site
This commit is contained in:
parent
1f6f7056ea
commit
f286e5062d
8 changed files with 208 additions and 1 deletions
15
layouts/partials/development/photo_exif_table.html
Normal file
15
layouts/partials/development/photo_exif_table.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<details>
|
||||
<summary>Debug EXIF Data</summary>
|
||||
<table class="photo-params debug">
|
||||
<thead>
|
||||
<td>Key</td>
|
||||
<td>Value</td>
|
||||
</thead>
|
||||
{{ range $k, $v := .Tags }}
|
||||
<tr>
|
||||
<td>{{ $k }}</td>
|
||||
<td>{{ $v }}</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</table>
|
||||
</details>
|
Loading…
Add table
Add a link
Reference in a new issue