aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/.gitignore3
-rw-r--r--example/Glacier 3000/_DSC5475.jpgbin0 -> 363216 bytes
-rw-r--r--example/Glacier 3000/_DSC5475.jpg.yaml15
-rw-r--r--example/Glacier 3000/_DSC5542.jpgbin0 -> 457873 bytes
-rw-r--r--example/Glacier 3000/_DSC5542.jpg.yaml15
-rw-r--r--example/Glacier 3000/thumbnail.jpgbin0 -> 457873 bytes
-rw-r--r--example/_DSC8808-1.jpgbin0 -> 1010643 bytes
-rw-r--r--example/_DSC8808-1.jpg.yaml12
-rw-r--r--example/gallery.yaml21
-rw-r--r--example/readme.md22
10 files changed, 88 insertions, 0 deletions
diff --git a/example/.gitignore b/example/.gitignore
new file mode 100644
index 0000000..c5ae58b
--- /dev/null
+++ b/example/.gitignore
@@ -0,0 +1,3 @@
1out
2items
3thumbnails \ No newline at end of file
diff --git a/example/Glacier 3000/_DSC5475.jpg b/example/Glacier 3000/_DSC5475.jpg
new file mode 100644
index 0000000..9835447
--- /dev/null
+++ b/example/Glacier 3000/_DSC5475.jpg
Binary files differ
diff --git a/example/Glacier 3000/_DSC5475.jpg.yaml b/example/Glacier 3000/_DSC5475.jpg.yaml
new file mode 100644
index 0000000..3454a68
--- /dev/null
+++ b/example/Glacier 3000/_DSC5475.jpg.yaml
@@ -0,0 +1,15 @@
1title: Fog 3000
2
3datetime: 2019-08-10T14:38:47+01:00
4
5description: >
6 © Philippe NGUYEN
7
8tags:
9 - photographer.nphilou
10 - location.switzerland.ormont-dessus
11 - glacier3000
12 - time.day
13 - weather.foggy
14 - forest
15 - trees
diff --git a/example/Glacier 3000/_DSC5542.jpg b/example/Glacier 3000/_DSC5542.jpg
new file mode 100644
index 0000000..19a716e
--- /dev/null
+++ b/example/Glacier 3000/_DSC5542.jpg
Binary files differ
diff --git a/example/Glacier 3000/_DSC5542.jpg.yaml b/example/Glacier 3000/_DSC5542.jpg.yaml
new file mode 100644
index 0000000..d174911
--- /dev/null
+++ b/example/Glacier 3000/_DSC5542.jpg.yaml
@@ -0,0 +1,15 @@
1title: Foggy catwalk
2
3datetime: 2019-08-10T16:00:45+01:00
4
5description: >
6 © Philippe NGUYEN
7
8tags:
9 - photographer.nphilou
10 - location.switzerland.ormont-dessus
11 - glacier3000
12 - time.day
13 - weather.foggy
14 - catwalk
15 - mountain
diff --git a/example/Glacier 3000/thumbnail.jpg b/example/Glacier 3000/thumbnail.jpg
new file mode 100644
index 0000000..19a716e
--- /dev/null
+++ b/example/Glacier 3000/thumbnail.jpg
Binary files differ
diff --git a/example/_DSC8808-1.jpg b/example/_DSC8808-1.jpg
new file mode 100644
index 0000000..51b43b0
--- /dev/null
+++ b/example/_DSC8808-1.jpg
Binary files differ
diff --git a/example/_DSC8808-1.jpg.yaml b/example/_DSC8808-1.jpg.yaml
new file mode 100644
index 0000000..b946ff7
--- /dev/null
+++ b/example/_DSC8808-1.jpg.yaml
@@ -0,0 +1,12 @@
1title: Book shop
2
3datetime: 2016-12-19T16:48:50+02:00
4
5description: >
6 © Philippe NGUYEN
7
8tags:
9 - photographer.nphilou
10 - location.germany.berlin
11 - books
12 - book-shop
diff --git a/example/gallery.yaml b/example/gallery.yaml
new file mode 100644
index 0000000..ccdb16b
--- /dev/null
+++ b/example/gallery.yaml
@@ -0,0 +1,21 @@
1compiler:
2 galleryName: Example gallery
3
4 includeFiles:
5 - "*.jpg"
6
7 #excludeFiles:
8 #- "*.md"
9
10 tagsFromDirectories: 0 # default
11
12 thumbnailMaxResolution:
13 width: 400 # default
14 height: 400 # default
15
16 pictureMaxResolution:
17 width: 1024
18 height: 768
19
20
21viewer: {}
diff --git a/example/readme.md b/example/readme.md
new file mode 100644
index 0000000..d5a7563
--- /dev/null
+++ b/example/readme.md
@@ -0,0 +1,22 @@
1ldgallery example gallery
2=========================
3
4This directory contains an example source directory that _ldgallery_ can understand to generate a gallery.
5
6
7Content
8-------
9
10```
11./example
12├── _DSC8808-1.jpg -- a picture
13├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file
14├── Glacier 3000 -- a directory grouping gallery items
15│   ├── thumbnail.jpg -- a thumbnail for the "Glacier 3000" directory
16│   ├── _DSC5475.jpg
17│   ├── _DSC5475.jpg.yaml
18│   ├── _DSC5542.jpg
19│   └── _DSC5542.jpg.yaml
20├── gallery.yaml -- gallery settings file
21└── readme.md -- this README
22```