├── .eleventy.js ├── .gitignore ├── README.md ├── netlify.toml ├── package-lock.json ├── package.json └── src ├── _data └── pets.json ├── _includes └── style.css ├── images ├── Thatcher.png ├── angel.jpg ├── armani-madeleine.jpeg ├── baby-doll.jpg ├── baño-leia.jpg ├── beam.jpg ├── botheamericanbulldog.jpg ├── bruno_broly.jpeg ├── butter_scotch-melvin.jpg ├── chispa.jpg ├── chocolate_chip-melvin.jpg ├── clarence.jpg ├── cookie-the-pom.jpg ├── cooper-swyx.jpeg ├── darrell_clawman-paige.jpg ├── dax-jonathan.jpg ├── dolly.jpg ├── edgar-benaiah.jpg ├── enzo.jpeg ├── espina-and-peach.jpg ├── gato-irene.jpg ├── giorgio.jpeg ├── gucci-erez.jpg ├── guff-laurie.jpg ├── guppy-benaiah.jpg ├── gypsy.jpg ├── hamachi-frances.jpg ├── henley_rcm.png ├── image0.jpeg ├── inji.jpg ├── kylo_rcm.png ├── leon.jpg ├── lily.jpg ├── loki.jpg ├── mabel.jpg ├── macchiato.jpg ├── mack-leslie.jpg ├── maria-del-carmen.jpg ├── maximiliano.jpg ├── melody.jpg ├── mike.jpg ├── molly-mike.jpg ├── nellie-jonathan.jpg ├── netliheart.svg ├── obi.jpg ├── olive-takes.jpg ├── ollie-lukeo.jpg ├── petuna-jessica.jpg ├── phineas_harrison-paige.jpg ├── pie-jack.jpeg ├── piper-the-hyper-pupper.jpg ├── pixel-drew.jpg ├── polly.jpg ├── professor-cuddles.jpg ├── purrfect.png ├── rosi_and_miguelito.jpg ├── ruby-on-trails.jpeg ├── rumple.jpeg ├── sadie_rcm.png ├── salvador.jpg ├── seuss-walter-judy-curtis.jpg ├── sherlock.jpg ├── skylar.jpg ├── smidget_morningsong-paige.jpg ├── smily_daisy_dustinrogers.jpg ├── strider-mike.jpg ├── sudo.jpg ├── sundance-ryan.jpg ├── ty.png ├── wash-and-fry.jpg ├── winter.jpeg └── zooey-rafa.jpg └── index.njk /.eleventy.js: -------------------------------------------------------------------------------- 1 | module.exports = function(eleventyConfig) { 2 | 3 | // pass image files direclty through to the output 4 | eleventyConfig.addPassthroughCopy("src/images"); 5 | 6 | // minify the CSS so that we can easily inline it 7 | const CleanCSS = require("clean-css"); 8 | eleventyConfig.addFilter("cssmin", function(code) { 9 | return new CleanCSS({}).minify(code).styles; 10 | }); 11 | 12 | // where do things live? 13 | return { 14 | dir: { 15 | input: "src", 16 | output: "dist" 17 | } 18 | }; 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | 4 | 5 | ### OSX ### 6 | # General 7 | .DS_Store 8 | .AppleDouble 9 | .LSOverride 10 | 11 | # Icon must end with two \r 12 | Icon 13 | 14 | # Thumbnails 15 | ._* 16 | 17 | # Files that might appear in the root of a volume 18 | .DocumentRevisions-V100 19 | .fseventsd 20 | .Spotlight-V100 21 | .TemporaryItems 22 | .Trashes 23 | .VolumeIcon.icns 24 | .com.apple.timemachine.donotpresent 25 | 26 | # Directories potentially created on remote AFP share 27 | .AppleDB 28 | .AppleDesktop 29 | Network Trash Folder 30 | Temporary Items 31 | .apdisk 32 | 33 | # Local Netlify folder 34 | .netlify 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # petsofnetlify 2 | 3 | This is a place where the Netlify team posts pictures of their pets. 4 | 5 | Want to meet our friends? Head to [petsofnetlify.com](http://petsofnetlify.com) 6 | 7 | 8 | ## A little note about this website 9 | 10 | It's not very nice looking, but that's okay. It was a project that [@philhawksworth](https://twitter.com/philhawksworth) dreamed up as a bit of an easter egg to support the launch of buying custom domains on Netlify. Then, @yourfrienderin begged him to teach her how to create a website in the process. You can make it better! Pull requests welcome <3 11 | 12 | 13 | ## You are a Netlifier but your pet is missing? 14 | 15 | Well that won't do. If your little friend is missing from this site please submit a pull request. But this site is just for the pets of people working at Netlify (and our beloved alumni) I'm afraid. To get your pet on here, you first have to _[join us](https://www.netlify.com/careers/?utm_source=github&utm_medium=petsofnetlify-pnh&utm_campaign=devex)_ 16 | 17 | 18 | ## Contributing code or pets (!) 19 | 20 | Please submit a [pull request](/netlify/petsofnetlify/pulls). 21 | 22 | To add your pet, you need to give us a photo of your lovely pet, and their name. Add the details to the [pets.json](/netlify/petsofnetlify/blob/master/src/_data/pets.json) data file like this: 23 | 24 | ```json 25 | { 26 | "name": "Your pet's name", 27 | "photo": "your-pets-photo.jpg" 28 | } 29 | ``` 30 | 31 | Remember to add a nice photo to the [images folder](/netlify/petsofnetlify/tree/master/src/images). 32 | 33 | 34 | ## Image optimisation 35 | 36 | Although it is best not to add a very large image file to this repo, it's not critical to resize and optimize your image file since this site automatically serves the images via Cloudinary who resize, optimize and cache the images on their CDN automatically. (Thanks to their API and [this little trick](https://github.com/netlify/petsofnetlify/blob/ba622cfd46613d2e20948fe4ade4cdf9fc9a0660/netlify.toml#L5-L8) with [Netlify Redirects](https://docs.netlify.com/routing/overview/?utm_source=github&utm_medium=petsofnetlfy-pnh&utm_campaign=devex)) 37 | 38 | ## Running locally 39 | 40 | Want to tinker with the code? 41 | 42 | ```sh 43 | 44 | # clone the repo 45 | git clone git@github.com:netlify/petsofnetlify.git 46 | 47 | # move into the project and install dependencies 48 | cd petsofnetlify 49 | npm install 50 | 51 | # generate the site and watch for changes 52 | npm start 53 | 54 | # to test the redirects which proxy photo requests via Cloudinary run the build with Netlify CLI (you need your own free Cloudinary account to try this out on your own site) 55 | 56 | # install the Netlify CLI 57 | npm install netlify-cli -g 58 | 59 | # run your project locally with Netlify Dev 60 | ntl dev 61 | 62 | ``` 63 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | command = "npm run build" 3 | publish = "dist" 4 | environment = { NODE_VERSION = "16" } 5 | 6 | 7 | [[redirects]] 8 | from = "https://:url/cloudinaried/:height/:image" 9 | to = "https://res.cloudinary.com/philhawksworth/image/fetch/q_auto,f_auto,h_:height/https://:url/images/:image" 10 | status = 200 11 | 12 | 13 | [[redirects]] 14 | from = "/cloudinaried/:height/:image" 15 | to = "/images/:image" 16 | status = 404 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "petsofnetlify", 3 | "version": "1.0.0", 4 | "description": "This is a place where the Netlify team posts pictures of their pets.", 5 | "dependencies": { 6 | "@11ty/eleventy": "^1.0.0-beta.8", 7 | "clean-css": "^4.2.3" 8 | }, 9 | "scripts": { 10 | "start": "npx eleventy --serve", 11 | "build": "npx eleventy" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/netlify/petsofnetlify.git" 16 | }, 17 | "keywords": [], 18 | "author": "Phil Hawksworth ", 19 | "license": "ISC", 20 | "bugs": { 21 | "url": "https://github.com/netlify/petsofnetlify/issues" 22 | }, 23 | "homepage": "https://github.com/netlify/petsofnetlify#readme" 24 | } 25 | -------------------------------------------------------------------------------- /src/_data/pets.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Seuss, Walter, Judy, & Curtis", 4 | "photo": "seuss-walter-judy-curtis.jpg" 5 | }, 6 | { 7 | "name": "Maximiliano", 8 | "photo": "maximiliano.jpg" 9 | }, 10 | { 11 | "name": "María del Carmen", 12 | "photo": "maria-del-carmen.jpg" 13 | }, 14 | { 15 | "name": "Professor Cuddles", 16 | "photo": "professor-cuddles.jpg" 17 | }, 18 | { 19 | "name": "Burt Macklin", 20 | "photo": "mack-leslie.jpg" 21 | }, 22 | { 23 | "name": "Gypsy", 24 | "photo": "gypsy.jpg" 25 | }, 26 | { 27 | "name": "Angel", 28 | "photo": "angel.jpg" 29 | }, 30 | { 31 | "name": "Edgar", 32 | "photo": "edgar-benaiah.jpg" 33 | }, 34 | { 35 | "name": "Guppy", 36 | "photo": "guppy-benaiah.jpg" 37 | }, 38 | { 39 | "name": "Monty and Petunia", 40 | "photo": "petuna-jessica.jpg" 41 | }, 42 | { 43 | "name": "Nyanyu", 44 | "photo": "salvador.jpg" 45 | }, 46 | { 47 | "name": "Gato", 48 | "photo": "gato-irene.jpg" 49 | }, 50 | { 51 | "name": "Zooey", 52 | "photo": "zooey-rafa.jpg" 53 | }, 54 | { 55 | "name": "Sundance", 56 | "photo": "sundance-ryan.jpg" 57 | }, 58 | { 59 | "name": "Roxy", 60 | "photo": "mike.jpg" 61 | }, 62 | { 63 | "name": "Wash and Fry", 64 | "photo": "wash-and-fry.jpg" 65 | }, 66 | { 67 | "name": "Macchiato", 68 | "photo": "macchiato.jpg" 69 | }, 70 | { 71 | "name": "Polly", 72 | "photo": "polly.jpg" 73 | }, 74 | { 75 | "name": "Beam", 76 | "photo": "beam.jpg" 77 | }, 78 | { 79 | "name": "Sudo", 80 | "photo": "sudo.jpg" 81 | }, 82 | { 83 | "name": "Lily", 84 | "photo": "lily.jpg" 85 | }, 86 | { 87 | "name": "Obi", 88 | "photo": "obi.jpg" 89 | }, 90 | { 91 | "name": "Cooper", 92 | "photo": "cooper-swyx.jpeg" 93 | }, 94 | { 95 | "name": "Gucci", 96 | "photo": "gucci-erez.jpg" 97 | }, 98 | { 99 | "name": "Baby Doll", 100 | "photo": "baby-doll.jpg" 101 | }, 102 | { 103 | "name": "Nellie", 104 | "photo": "nellie-jonathan.jpg" 105 | }, 106 | { 107 | "name": "Dax", 108 | "photo": "dax-jonathan.jpg" 109 | }, 110 | { 111 | "name": "Molly", 112 | "photo": "molly-mike.jpg" 113 | }, 114 | { 115 | "name": "Strider", 116 | "photo": "strider-mike.jpg" 117 | }, 118 | { 119 | "name": "Guff", 120 | "photo": "guff-laurie.jpg" 121 | }, 122 | { 123 | "name": "Ollie", 124 | "photo": "ollie-lukeo.jpg" 125 | }, 126 | { 127 | "name": "Armani", 128 | "photo": "armani-madeleine.jpeg" 129 | }, 130 | { 131 | "name": "Baño", 132 | "photo": "baño-leia.jpg" 133 | }, 134 | { 135 | "name": "Thatcher", 136 | "photo": "Thatcher.png" 137 | }, 138 | { 139 | "name": "Pixel", 140 | "photo": "pixel-drew.jpg" 141 | }, 142 | { 143 | "name": "Rosi & Miguelito", 144 | "photo": "rosi_and_miguelito.jpg" 145 | }, 146 | { 147 | "name": "Jack", 148 | "photo": "pie-jack.jpeg" 149 | }, 150 | { 151 | "name": "Daisy", 152 | "photo": "smily_daisy_dustinrogers.jpg" 153 | }, 154 | { 155 | "name": "Enzo", 156 | "photo": "enzo.jpeg" 157 | }, 158 | { 159 | "name": "Dolly", 160 | "photo": "dolly.jpg" 161 | }, 162 | { 163 | "name": "Clarence", 164 | "photo": "clarence.jpg" 165 | }, 166 | { 167 | "name": "Leon", 168 | "photo": "leon.jpg" 169 | }, 170 | { 171 | "name": "Piper", 172 | "photo": "piper-the-hyper-pupper.jpg" 173 | }, 174 | { 175 | "name": "Inji", 176 | "photo": "inji.jpg" 177 | }, 178 | { 179 | "name": "Chocolate Chip", 180 | "photo": "chocolate_chip-melvin.jpg" 181 | }, 182 | { 183 | "name": "Butter Scotch", 184 | "photo": "butter_scotch-melvin.jpg" 185 | }, 186 | { 187 | "name": "Giorgio", 188 | "photo": "giorgio.jpeg" 189 | }, 190 | { 191 | "name": "Ruby (ruby-on-trails)", 192 | "photo": "ruby-on-trails.jpeg" 193 | }, 194 | { 195 | "name": "Rumple (Rumplesnakeskin)", 196 | "photo": "rumple.jpeg" 197 | }, 198 | { 199 | "name": "Darrell 'FaceStepper' Clawman", 200 | "photo": "darrell_clawman-paige.jpg" 201 | }, 202 | { 203 | "name": "Phineas Harrison", 204 | "photo": "phineas_harrison-paige.jpg" 205 | }, 206 | { 207 | "name": "Smidget Morningsong", 208 | "photo": "smidget_morningsong-paige.jpg" 209 | }, 210 | { 211 | "name": "Sherlock", 212 | "photo": "sherlock.jpg" 213 | }, 214 | { 215 | "name": "Melody", 216 | "photo": "melody.jpg" 217 | }, 218 | { 219 | "name": "Cookie The Pom", 220 | "photo": "cookie-the-pom.jpg" 221 | }, 222 | { 223 | "name": "Chispa", 224 | "photo": "chispa.jpg" 225 | }, 226 | { 227 | "name": "Olive", 228 | "photo": "olive-takes.jpg" 229 | }, 230 | { 231 | "name": "Skylar", 232 | "photo": "skylar.jpg" 233 | }, 234 | { 235 | "name": "Mabel", 236 | "photo": "mabel.jpg" 237 | }, 238 | { 239 | "name": "Purrfect.dev - AJ with Headphones", 240 | "photo": "purrfect.png" 241 | }, 242 | { 243 | "name": "Loki", 244 | "photo": "loki.jpg" 245 | }, 246 | { 247 | "name": "Winter", 248 | "photo": "winter.jpeg" 249 | }, 250 | { 251 | "name": "Ty", 252 | "photo": "ty.png" 253 | }, 254 | { 255 | "name": "Bruno & Broly", 256 | "photo": "bruno_broly.jpeg" 257 | }, 258 | { 259 | "name": "Espina & Peach", 260 | "photo": "espina-and-peach.jpg" 261 | }, 262 | { 263 | "name": "Henley", 264 | "photo": "henley_rcm.png" 265 | }, 266 | { 267 | "name": "Kylo", 268 | "photo": "kylo_rcm.png" 269 | }, 270 | { 271 | "name": "Sadie", 272 | "photo": "sadie_rcm.png" 273 | }, 274 | { 275 | "name":"Peaches", 276 | "photo":"image0.jpeg" 277 | } 278 | ] 279 | -------------------------------------------------------------------------------- /src/_includes/style.css: -------------------------------------------------------------------------------- 1 | html { 2 | scroll-behavior: smooth; 3 | } 4 | 5 | body { 6 | text-align: center; 7 | font-family:Roboto; 8 | } 9 | 10 | h1 { 11 | color:#404040; 12 | } 13 | 14 | h2 { 15 | margin-top:0px; 16 | } 17 | 18 | 19 | .pets { 20 | display: flex; 21 | flex-wrap: wrap; 22 | justify-content: space-around; 23 | } 24 | 25 | .pet { 26 | display: flex; 27 | flex-direction: column-reverse; 28 | color: inherit; 29 | text-decoration: none; 30 | } 31 | 32 | .pet img { 33 | height:200px; 34 | border-radius: 10px; 35 | box-shadow: 1px 0px 10px 0px rgba(0,0,0,0.2); 36 | padding: 2px; 37 | margin: 10px; 38 | align-self: center; 39 | } 40 | 41 | .pet:target img { 42 | box-shadow: 1px 0px 20px 10px rgba(255,0,100,0.25); 43 | } 44 | 45 | footer { 46 | margin: 2rem 0; 47 | } 48 | 49 | .netliheart { 50 | margin-bottom:-0.1rem; 51 | width: 1rem; 52 | } 53 | -------------------------------------------------------------------------------- /src/images/Thatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/Thatcher.png -------------------------------------------------------------------------------- /src/images/angel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/angel.jpg -------------------------------------------------------------------------------- /src/images/armani-madeleine.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/armani-madeleine.jpeg -------------------------------------------------------------------------------- /src/images/baby-doll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/baby-doll.jpg -------------------------------------------------------------------------------- /src/images/baño-leia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/baño-leia.jpg -------------------------------------------------------------------------------- /src/images/beam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/beam.jpg -------------------------------------------------------------------------------- /src/images/botheamericanbulldog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/botheamericanbulldog.jpg -------------------------------------------------------------------------------- /src/images/bruno_broly.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/bruno_broly.jpeg -------------------------------------------------------------------------------- /src/images/butter_scotch-melvin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/butter_scotch-melvin.jpg -------------------------------------------------------------------------------- /src/images/chispa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/chispa.jpg -------------------------------------------------------------------------------- /src/images/chocolate_chip-melvin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/chocolate_chip-melvin.jpg -------------------------------------------------------------------------------- /src/images/clarence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/clarence.jpg -------------------------------------------------------------------------------- /src/images/cookie-the-pom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/cookie-the-pom.jpg -------------------------------------------------------------------------------- /src/images/cooper-swyx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/cooper-swyx.jpeg -------------------------------------------------------------------------------- /src/images/darrell_clawman-paige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/darrell_clawman-paige.jpg -------------------------------------------------------------------------------- /src/images/dax-jonathan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/dax-jonathan.jpg -------------------------------------------------------------------------------- /src/images/dolly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/dolly.jpg -------------------------------------------------------------------------------- /src/images/edgar-benaiah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/edgar-benaiah.jpg -------------------------------------------------------------------------------- /src/images/enzo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/enzo.jpeg -------------------------------------------------------------------------------- /src/images/espina-and-peach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/espina-and-peach.jpg -------------------------------------------------------------------------------- /src/images/gato-irene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/gato-irene.jpg -------------------------------------------------------------------------------- /src/images/giorgio.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/giorgio.jpeg -------------------------------------------------------------------------------- /src/images/gucci-erez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/gucci-erez.jpg -------------------------------------------------------------------------------- /src/images/guff-laurie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/guff-laurie.jpg -------------------------------------------------------------------------------- /src/images/guppy-benaiah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/guppy-benaiah.jpg -------------------------------------------------------------------------------- /src/images/gypsy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/gypsy.jpg -------------------------------------------------------------------------------- /src/images/hamachi-frances.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/hamachi-frances.jpg -------------------------------------------------------------------------------- /src/images/henley_rcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/henley_rcm.png -------------------------------------------------------------------------------- /src/images/image0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/image0.jpeg -------------------------------------------------------------------------------- /src/images/inji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/inji.jpg -------------------------------------------------------------------------------- /src/images/kylo_rcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/kylo_rcm.png -------------------------------------------------------------------------------- /src/images/leon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/leon.jpg -------------------------------------------------------------------------------- /src/images/lily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/lily.jpg -------------------------------------------------------------------------------- /src/images/loki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/loki.jpg -------------------------------------------------------------------------------- /src/images/mabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/mabel.jpg -------------------------------------------------------------------------------- /src/images/macchiato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/macchiato.jpg -------------------------------------------------------------------------------- /src/images/mack-leslie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/mack-leslie.jpg -------------------------------------------------------------------------------- /src/images/maria-del-carmen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/maria-del-carmen.jpg -------------------------------------------------------------------------------- /src/images/maximiliano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/maximiliano.jpg -------------------------------------------------------------------------------- /src/images/melody.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/melody.jpg -------------------------------------------------------------------------------- /src/images/mike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/mike.jpg -------------------------------------------------------------------------------- /src/images/molly-mike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/molly-mike.jpg -------------------------------------------------------------------------------- /src/images/nellie-jonathan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/nellie-jonathan.jpg -------------------------------------------------------------------------------- /src/images/netliheart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/images/obi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/obi.jpg -------------------------------------------------------------------------------- /src/images/olive-takes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/olive-takes.jpg -------------------------------------------------------------------------------- /src/images/ollie-lukeo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/ollie-lukeo.jpg -------------------------------------------------------------------------------- /src/images/petuna-jessica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/petuna-jessica.jpg -------------------------------------------------------------------------------- /src/images/phineas_harrison-paige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/phineas_harrison-paige.jpg -------------------------------------------------------------------------------- /src/images/pie-jack.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/pie-jack.jpeg -------------------------------------------------------------------------------- /src/images/piper-the-hyper-pupper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/piper-the-hyper-pupper.jpg -------------------------------------------------------------------------------- /src/images/pixel-drew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/pixel-drew.jpg -------------------------------------------------------------------------------- /src/images/polly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/polly.jpg -------------------------------------------------------------------------------- /src/images/professor-cuddles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/professor-cuddles.jpg -------------------------------------------------------------------------------- /src/images/purrfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/purrfect.png -------------------------------------------------------------------------------- /src/images/rosi_and_miguelito.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/rosi_and_miguelito.jpg -------------------------------------------------------------------------------- /src/images/ruby-on-trails.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/ruby-on-trails.jpeg -------------------------------------------------------------------------------- /src/images/rumple.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/rumple.jpeg -------------------------------------------------------------------------------- /src/images/sadie_rcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/sadie_rcm.png -------------------------------------------------------------------------------- /src/images/salvador.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/salvador.jpg -------------------------------------------------------------------------------- /src/images/seuss-walter-judy-curtis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/seuss-walter-judy-curtis.jpg -------------------------------------------------------------------------------- /src/images/sherlock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/sherlock.jpg -------------------------------------------------------------------------------- /src/images/skylar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/skylar.jpg -------------------------------------------------------------------------------- /src/images/smidget_morningsong-paige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/smidget_morningsong-paige.jpg -------------------------------------------------------------------------------- /src/images/smily_daisy_dustinrogers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/smily_daisy_dustinrogers.jpg -------------------------------------------------------------------------------- /src/images/strider-mike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/strider-mike.jpg -------------------------------------------------------------------------------- /src/images/sudo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/sudo.jpg -------------------------------------------------------------------------------- /src/images/sundance-ryan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/sundance-ryan.jpg -------------------------------------------------------------------------------- /src/images/ty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/ty.png -------------------------------------------------------------------------------- /src/images/wash-and-fry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/wash-and-fry.jpg -------------------------------------------------------------------------------- /src/images/winter.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/winter.jpeg -------------------------------------------------------------------------------- /src/images/zooey-rafa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/petsofnetlify/64664d8779ad3ff56f221571be8f18aa5a4ea629/src/images/zooey-rafa.jpg -------------------------------------------------------------------------------- /src/index.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Pets of Netlify 8 | 9 | {# Include the CSS and minify it with a filter #} 10 | {% set css %} 11 | {% include "style.css" %} 12 | {% endset %} 13 | 16 | 17 | 18 | 19 |
20 |

Pets of Netlify

21 |

Say hello to our little friends

22 |
23 |
24 | {# Output some HTML for each pet found in _data/pets.json #} 25 | {% for pet in pets %} 26 | 27 |

{{ pet.name }}

28 | {{ pet.name }} 29 |
30 | {% endfor %} 31 |
32 | 35 | 36 | 37 | --------------------------------------------------------------------------------