├── .gitignore ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── _index.md ├── photos_m │ └── _index.md └── photos_s │ └── _index.md ├── data └── photos.json ├── layouts ├── _default │ ├── baseof.html │ └── list.html ├── index.html ├── photos_m │ └── list.html └── photos_s │ └── list.html └── static ├── css ├── masonry.css ├── normalize.css └── skeleton.css └── images ├── apple.jpg ├── apple2.jpg ├── apple3.jpg ├── apple4.jpg ├── apple5.jpg ├── apple6.jpg ├── bagels.jpg ├── branches.png ├── carrots.jpg ├── latte-art.jpg ├── noodles.jpg └── single-bagel.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .netlify 2 | public/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/photos_m/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Photo list" 3 | date: 2019-02-11T18:47:38-08:00 4 | --- 5 | -------------------------------------------------------------------------------- /content/photos_s/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Photo list" 3 | date: 2019-02-11T18:47:38-08:00 4 | --- 5 | -------------------------------------------------------------------------------- /data/photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/data/photos.json -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/photos_m/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/layouts/photos_m/list.html -------------------------------------------------------------------------------- /layouts/photos_s/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/layouts/photos_s/list.html -------------------------------------------------------------------------------- /static/css/masonry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/css/masonry.css -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/css/skeleton.css -------------------------------------------------------------------------------- /static/images/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple.jpg -------------------------------------------------------------------------------- /static/images/apple2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple2.jpg -------------------------------------------------------------------------------- /static/images/apple3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple3.jpg -------------------------------------------------------------------------------- /static/images/apple4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple4.jpg -------------------------------------------------------------------------------- /static/images/apple5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple5.jpg -------------------------------------------------------------------------------- /static/images/apple6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/apple6.jpg -------------------------------------------------------------------------------- /static/images/bagels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/bagels.jpg -------------------------------------------------------------------------------- /static/images/branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/branches.png -------------------------------------------------------------------------------- /static/images/carrots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/carrots.jpg -------------------------------------------------------------------------------- /static/images/latte-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/latte-art.jpg -------------------------------------------------------------------------------- /static/images/noodles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/noodles.jpg -------------------------------------------------------------------------------- /static/images/single-bagel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/netlify-photo-gallery/HEAD/static/images/single-bagel.jpg --------------------------------------------------------------------------------