├── .gitignore ├── CNAME ├── License.md ├── Old Bindery Stuff ├── bindery-cssregions-polyfill.js ├── bindery.css ├── bindery.js ├── book.js ├── book_layout.html ├── book_old.css ├── cssregions.js ├── label_interview_paragraphs.js └── link_footnotes.js ├── README.md ├── _config.yml ├── _includes ├── book_css.html ├── checkboxes_links.html ├── images.html ├── jquery.html ├── metadata.html ├── meyer_reset.html ├── print_css.html ├── print_menu.html ├── regions_js.html └── universal_css.html ├── _layouts ├── default copy 2.html ├── default copy.html ├── default.html ├── print.html ├── toc.html └── toc_old.html ├── _posts ├── .DS_Store ├── 2015-03-25-squid.md ├── 2015-05-20-endnote.md ├── 2015-05-25-caveats.md ├── 2015-05-26-editing-categories.md ├── 2015-05-27-content-flow.md ├── 2015-05-28-book-structure.md ├── 2015-05-29-how-to-install.md ├── 2015-05-30-what-it-does.md ├── 2015-05-31-what-is-babybindery.md ├── 2017-02-01-wsj-letter.md ├── 2017-02-03-webphilosophy.md ├── 2017-02-04-essay.md ├── 2017-03-01-materials.md ├── 2017-03-10-ncsu.md ├── 2017-03-22-Modern-Pictographs.md ├── 2017-03-22-election.md ├── 2017-03-22-intersections.md ├── 2017-03-22-syllabus.md ├── 2017-03-22-webdem.md ├── 2017-04-12-buttons.md ├── 2017-05-03-graduation.md ├── 2017-05-15-marybethintro.md ├── 2017-06-27-introletter.md └── 2017-07-08-cv.md ├── book.html ├── credits.md ├── css ├── book.css ├── custom.scss ├── print.css ├── print_solo.scss ├── reset.css └── universal.scss ├── details.md ├── favicon.ico ├── feed.xml ├── img ├── ModernPictograms_ALL.mp4 ├── book.svg ├── buttons │ ├── button_cyrus_800.png │ ├── button_dino_jc_800.png │ ├── button_heart_jc.png │ ├── button_jay_800.png │ ├── button_kristin_800.png │ ├── button_lucy_800.png │ ├── button_michelle_800.png │ ├── button_nic_800.png │ ├── button_rainwater_800.png │ ├── button_shaykin_800.png │ ├── button_verity_800.png │ ├── buttons_all.jpg │ ├── installed.jpg │ ├── machineinstall.jpg │ └── newharvest.jpg ├── cover │ ├── Biennial-Grid-Crop_o.png │ └── ds1_apples.png ├── cover2 │ └── heart.png ├── materials │ ├── IMG_0451.jpg │ ├── IMG_0452.jpg │ ├── IMG_0455.jpg │ └── IMG_0461.jpg ├── men_desks.jpg ├── post_images │ └── zuck.jpg ├── social │ ├── arena.svg │ ├── facebook.svg │ ├── github.svg │ ├── instagram.svg │ ├── medium.svg │ ├── soundcloud.svg │ ├── twitter.svg │ ├── vimeo.svg │ └── youtube.svg └── uxmodernism.png ├── index.html └── js ├── .DS_Store ├── checkboxes_links.js ├── css-regions-polyfill.js ├── css-regions-polyfill.js.map └── imagesloaded.pkgd.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | http://bb.thedesignoffice.org 2 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/License.md -------------------------------------------------------------------------------- /Old Bindery Stuff/bindery-cssregions-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/bindery-cssregions-polyfill.js -------------------------------------------------------------------------------- /Old Bindery Stuff/bindery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/bindery.css -------------------------------------------------------------------------------- /Old Bindery Stuff/bindery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/bindery.js -------------------------------------------------------------------------------- /Old Bindery Stuff/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/book.js -------------------------------------------------------------------------------- /Old Bindery Stuff/book_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/book_layout.html -------------------------------------------------------------------------------- /Old Bindery Stuff/book_old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/book_old.css -------------------------------------------------------------------------------- /Old Bindery Stuff/cssregions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/cssregions.js -------------------------------------------------------------------------------- /Old Bindery Stuff/label_interview_paragraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/label_interview_paragraphs.js -------------------------------------------------------------------------------- /Old Bindery Stuff/link_footnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/Old Bindery Stuff/link_footnotes.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/book_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/book_css.html -------------------------------------------------------------------------------- /_includes/checkboxes_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/checkboxes_links.html -------------------------------------------------------------------------------- /_includes/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/images.html -------------------------------------------------------------------------------- /_includes/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/jquery.html -------------------------------------------------------------------------------- /_includes/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/metadata.html -------------------------------------------------------------------------------- /_includes/meyer_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/meyer_reset.html -------------------------------------------------------------------------------- /_includes/print_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/print_css.html -------------------------------------------------------------------------------- /_includes/print_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/print_menu.html -------------------------------------------------------------------------------- /_includes/regions_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/regions_js.html -------------------------------------------------------------------------------- /_includes/universal_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_includes/universal_css.html -------------------------------------------------------------------------------- /_layouts/default copy 2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/default copy 2.html -------------------------------------------------------------------------------- /_layouts/default copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/default copy.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/print.html -------------------------------------------------------------------------------- /_layouts/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/toc.html -------------------------------------------------------------------------------- /_layouts/toc_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_layouts/toc_old.html -------------------------------------------------------------------------------- /_posts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/.DS_Store -------------------------------------------------------------------------------- /_posts/2015-03-25-squid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-03-25-squid.md -------------------------------------------------------------------------------- /_posts/2015-05-20-endnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-20-endnote.md -------------------------------------------------------------------------------- /_posts/2015-05-25-caveats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-25-caveats.md -------------------------------------------------------------------------------- /_posts/2015-05-26-editing-categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-26-editing-categories.md -------------------------------------------------------------------------------- /_posts/2015-05-27-content-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-27-content-flow.md -------------------------------------------------------------------------------- /_posts/2015-05-28-book-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-28-book-structure.md -------------------------------------------------------------------------------- /_posts/2015-05-29-how-to-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-29-how-to-install.md -------------------------------------------------------------------------------- /_posts/2015-05-30-what-it-does.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-30-what-it-does.md -------------------------------------------------------------------------------- /_posts/2015-05-31-what-is-babybindery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2015-05-31-what-is-babybindery.md -------------------------------------------------------------------------------- /_posts/2017-02-01-wsj-letter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-02-01-wsj-letter.md -------------------------------------------------------------------------------- /_posts/2017-02-03-webphilosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-02-03-webphilosophy.md -------------------------------------------------------------------------------- /_posts/2017-02-04-essay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-02-04-essay.md -------------------------------------------------------------------------------- /_posts/2017-03-01-materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-01-materials.md -------------------------------------------------------------------------------- /_posts/2017-03-10-ncsu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-10-ncsu.md -------------------------------------------------------------------------------- /_posts/2017-03-22-Modern-Pictographs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-22-Modern-Pictographs.md -------------------------------------------------------------------------------- /_posts/2017-03-22-election.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-22-election.md -------------------------------------------------------------------------------- /_posts/2017-03-22-intersections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-22-intersections.md -------------------------------------------------------------------------------- /_posts/2017-03-22-syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-22-syllabus.md -------------------------------------------------------------------------------- /_posts/2017-03-22-webdem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-03-22-webdem.md -------------------------------------------------------------------------------- /_posts/2017-04-12-buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-04-12-buttons.md -------------------------------------------------------------------------------- /_posts/2017-05-03-graduation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-05-03-graduation.md -------------------------------------------------------------------------------- /_posts/2017-05-15-marybethintro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-05-15-marybethintro.md -------------------------------------------------------------------------------- /_posts/2017-06-27-introletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-06-27-introletter.md -------------------------------------------------------------------------------- /_posts/2017-07-08-cv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/_posts/2017-07-08-cv.md -------------------------------------------------------------------------------- /book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/book.html -------------------------------------------------------------------------------- /credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/credits.md -------------------------------------------------------------------------------- /css/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/book.css -------------------------------------------------------------------------------- /css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/custom.scss -------------------------------------------------------------------------------- /css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/print.css -------------------------------------------------------------------------------- /css/print_solo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/print_solo.scss -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/universal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/css/universal.scss -------------------------------------------------------------------------------- /details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/details.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/favicon.ico -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/feed.xml -------------------------------------------------------------------------------- /img/ModernPictograms_ALL.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/ModernPictograms_ALL.mp4 -------------------------------------------------------------------------------- /img/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/book.svg -------------------------------------------------------------------------------- /img/buttons/button_cyrus_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_cyrus_800.png -------------------------------------------------------------------------------- /img/buttons/button_dino_jc_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_dino_jc_800.png -------------------------------------------------------------------------------- /img/buttons/button_heart_jc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_heart_jc.png -------------------------------------------------------------------------------- /img/buttons/button_jay_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_jay_800.png -------------------------------------------------------------------------------- /img/buttons/button_kristin_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_kristin_800.png -------------------------------------------------------------------------------- /img/buttons/button_lucy_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_lucy_800.png -------------------------------------------------------------------------------- /img/buttons/button_michelle_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_michelle_800.png -------------------------------------------------------------------------------- /img/buttons/button_nic_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_nic_800.png -------------------------------------------------------------------------------- /img/buttons/button_rainwater_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_rainwater_800.png -------------------------------------------------------------------------------- /img/buttons/button_shaykin_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_shaykin_800.png -------------------------------------------------------------------------------- /img/buttons/button_verity_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/button_verity_800.png -------------------------------------------------------------------------------- /img/buttons/buttons_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/buttons_all.jpg -------------------------------------------------------------------------------- /img/buttons/installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/installed.jpg -------------------------------------------------------------------------------- /img/buttons/machineinstall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/machineinstall.jpg -------------------------------------------------------------------------------- /img/buttons/newharvest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/buttons/newharvest.jpg -------------------------------------------------------------------------------- /img/cover/Biennial-Grid-Crop_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/cover/Biennial-Grid-Crop_o.png -------------------------------------------------------------------------------- /img/cover/ds1_apples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/cover/ds1_apples.png -------------------------------------------------------------------------------- /img/cover2/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/cover2/heart.png -------------------------------------------------------------------------------- /img/materials/IMG_0451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/materials/IMG_0451.jpg -------------------------------------------------------------------------------- /img/materials/IMG_0452.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/materials/IMG_0452.jpg -------------------------------------------------------------------------------- /img/materials/IMG_0455.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/materials/IMG_0455.jpg -------------------------------------------------------------------------------- /img/materials/IMG_0461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/materials/IMG_0461.jpg -------------------------------------------------------------------------------- /img/men_desks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/men_desks.jpg -------------------------------------------------------------------------------- /img/post_images/zuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/post_images/zuck.jpg -------------------------------------------------------------------------------- /img/social/arena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/arena.svg -------------------------------------------------------------------------------- /img/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/facebook.svg -------------------------------------------------------------------------------- /img/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/github.svg -------------------------------------------------------------------------------- /img/social/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/instagram.svg -------------------------------------------------------------------------------- /img/social/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/medium.svg -------------------------------------------------------------------------------- /img/social/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/soundcloud.svg -------------------------------------------------------------------------------- /img/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/twitter.svg -------------------------------------------------------------------------------- /img/social/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/vimeo.svg -------------------------------------------------------------------------------- /img/social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/social/youtube.svg -------------------------------------------------------------------------------- /img/uxmodernism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/img/uxmodernism.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/index.html -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/js/.DS_Store -------------------------------------------------------------------------------- /js/checkboxes_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/js/checkboxes_links.js -------------------------------------------------------------------------------- /js/css-regions-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/js/css-regions-polyfill.js -------------------------------------------------------------------------------- /js/css-regions-polyfill.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/js/css-regions-polyfill.js.map -------------------------------------------------------------------------------- /js/imagesloaded.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedesignoffice/babybindery/HEAD/js/imagesloaded.pkgd.js --------------------------------------------------------------------------------