16 |
{{ heading }}
17 |
Hi, I'm {{ site.author.firstName }} {{ site.author.lastName}}. I'm a novice photography and designer. This website acts as a compendium of images I've taken over the years.
18 |
This is mock text, write whatever you'd like for the about me page. Maybe add a picture or some of your recent work!
19 |
You can find me around the web at the following places:
20 |
21 |
22 | {% for key, value in site.socials %}
23 | - {{ key | title }}
24 | {% endfor %}
25 |
26 |
27 |
28 |
Feel free to reach out to me by email or on social media. I usually take 24-48hrs to respond. If you think my work aligns with your projects needs, I'd love to hear from you!
29 |
30 |
39 |
--------------------------------------------------------------------------------
/src/favicon_data/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/android-chrome-192x192.png
--------------------------------------------------------------------------------
/src/favicon_data/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/android-chrome-512x512.png
--------------------------------------------------------------------------------
/src/favicon_data/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/apple-touch-icon.png
--------------------------------------------------------------------------------
/src/favicon_data/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/favicon-16x16.png
--------------------------------------------------------------------------------
/src/favicon_data/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/favicon-32x32.png
--------------------------------------------------------------------------------
/src/favicon_data/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tannerdolby/eleventy-photo-gallery/d45cdc299bfc05928a9b825c6d8a680286dcbaab/src/favicon_data/favicon.ico
--------------------------------------------------------------------------------
/src/favicon_data/site.webmanifest:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Camera Emoji Favicon",
3 | "short_name": "Camera",
4 | "icons": [
5 | {
6 | "src": "/favicon_data/favicon-16x16.png",
7 | "sizes": "16x16",
8 | "type": "image/png"
9 | },
10 | {
11 | "src": "/favicon_data/favicon-32x32.png",
12 | "sizes": "32x32",
13 | "type": "image/png"
14 | },
15 | {
16 | "src": "/favicon_data/apple-touch-icon.png",
17 | "sizes": "180x180",
18 | "type":"image/png"
19 | },
20 | {
21 | "src":"/favicon_data/android-chrome-192x192.png",
22 | "sizes":"192x192",
23 | "type":"image/png"
24 | },
25 | {
26 | "src":"/favicon_data/android-chrome-512x512.png",
27 | "sizes":"512x512",
28 | "type":"image/png"
29 | }
30 | ],
31 | "theme_color":"#fff",
32 | "background_color":"#111",
33 | "display":"standalone"
34 | }
--------------------------------------------------------------------------------
/src/feature.njk:
--------------------------------------------------------------------------------
1 | ---
2 | pagination:
3 | data: gallery
4 | size: 1
5 | alias: image
6 | permalink: "/gallery/{{ image.title | slug }}/"
7 | url: https://eleventy-gallery.netlify.app
8 | ---
9 |
10 |
11 |
12 | {% metagen
13 | title=image.title,
14 | desc=image.title + " " + site.pageMetadata.featured.content,
15 | url=url + "/gallery/" + image.title | slug + "/",
16 | img=url + image.imgDir + image.src,
17 | img_alt=image.alt,
18 | twitter_card_type='summary_large_image',
19 | twitter_handle=site.author.twitterHandle,
20 | name=site.author.firstName + " " + site.author.lastName,
21 | generator="Eleventy v2.0.1",
22 | comments=true
23 | %}
24 |