├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── netlify.toml ├── package.json ├── renovate.json ├── src ├── cms │ ├── cms.js │ └── preview-templates │ │ ├── AboutPagePreview.js │ │ ├── FooterPreview.js │ │ ├── HomePagePreview.js │ │ ├── MeetupPreview.js │ │ ├── NavbarPreview.js │ │ └── PastMeetupsPagePreview.js ├── components │ ├── Content.js │ ├── CustomLink.js │ ├── Footer │ │ ├── Footer.js │ │ ├── index.js │ │ └── styles.scss │ ├── Layout.js │ ├── Map.js │ └── Navbar │ │ ├── Navbar.js │ │ ├── index.js │ │ └── styles.scss ├── img │ ├── favicon.png │ ├── headshot-placeholder.svg │ └── location.svg ├── pages │ ├── 404.js │ ├── about │ │ └── index.md │ ├── footer │ │ └── index.md │ ├── home │ │ └── index.md │ ├── index.js │ ├── meetups │ │ ├── august-2018.md │ │ ├── july-2018.md │ │ ├── november-2018-meetup.md │ │ ├── october-2018.md │ │ └── september-2018.md │ ├── navbar │ │ └── index.md │ └── pastMeetups │ │ └── index.md ├── styles │ ├── 404.scss │ ├── about-page.scss │ ├── generic.scss │ ├── home.scss │ ├── index.js │ ├── meetup.scss │ ├── mixins.scss │ ├── past-meetups-page.scss │ ├── reset.scss │ └── variables.scss └── templates │ ├── about-page.js │ ├── meetup.js │ └── past-meetups-page.js ├── static ├── admin │ └── config.yml └── img │ ├── annie-spratt-608001-unsplash.jpg │ ├── benjamin-parker-736167-unsplash.jpg │ ├── edward-cisneros-415601-unsplash.jpg │ ├── email.svg │ ├── facebook.svg │ ├── humphrey-muleba-795250-unsplash.jpg │ ├── jakob-dalbjorn-730178-unsplash.jpg │ ├── jonas-kakaroto-577554-unsplash.jpg │ ├── js-wakanda.png │ ├── logo.svg │ ├── lucas-sankey-378674-unsplash.jpg │ ├── marius-ciocirlan-398931-unsplash.jpg │ ├── meetup.svg │ ├── michael-dam-258165-unsplash.jpg │ ├── neonbrand-509131-unsplash.jpg │ ├── organizer-1.jpg │ ├── organizer-2.jpg │ ├── ramy-kabalan-796973-unsplash.jpg │ ├── teemu-paananen-376238-unsplash.jpg │ ├── television.png │ └── twitter.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v9.10.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/renovate.json -------------------------------------------------------------------------------- /src/cms/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/cms.js -------------------------------------------------------------------------------- /src/cms/preview-templates/AboutPagePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/AboutPagePreview.js -------------------------------------------------------------------------------- /src/cms/preview-templates/FooterPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/FooterPreview.js -------------------------------------------------------------------------------- /src/cms/preview-templates/HomePagePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/HomePagePreview.js -------------------------------------------------------------------------------- /src/cms/preview-templates/MeetupPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/MeetupPreview.js -------------------------------------------------------------------------------- /src/cms/preview-templates/NavbarPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/NavbarPreview.js -------------------------------------------------------------------------------- /src/cms/preview-templates/PastMeetupsPagePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/cms/preview-templates/PastMeetupsPagePreview.js -------------------------------------------------------------------------------- /src/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Content.js -------------------------------------------------------------------------------- /src/components/CustomLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/CustomLink.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | export * from "./Footer"; 2 | -------------------------------------------------------------------------------- /src/components/Footer/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Footer/styles.scss -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Map.js -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/Navbar/index.js: -------------------------------------------------------------------------------- 1 | export * from "./Navbar"; 2 | -------------------------------------------------------------------------------- /src/components/Navbar/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/components/Navbar/styles.scss -------------------------------------------------------------------------------- /src/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/img/favicon.png -------------------------------------------------------------------------------- /src/img/headshot-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/img/headshot-placeholder.svg -------------------------------------------------------------------------------- /src/img/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/img/location.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/about/index.md -------------------------------------------------------------------------------- /src/pages/footer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/footer/index.md -------------------------------------------------------------------------------- /src/pages/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/home/index.md -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/meetups/august-2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/meetups/august-2018.md -------------------------------------------------------------------------------- /src/pages/meetups/july-2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/meetups/july-2018.md -------------------------------------------------------------------------------- /src/pages/meetups/november-2018-meetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/meetups/november-2018-meetup.md -------------------------------------------------------------------------------- /src/pages/meetups/october-2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/meetups/october-2018.md -------------------------------------------------------------------------------- /src/pages/meetups/september-2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/meetups/september-2018.md -------------------------------------------------------------------------------- /src/pages/navbar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/navbar/index.md -------------------------------------------------------------------------------- /src/pages/pastMeetups/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/pages/pastMeetups/index.md -------------------------------------------------------------------------------- /src/styles/404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/404.scss -------------------------------------------------------------------------------- /src/styles/about-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/about-page.scss -------------------------------------------------------------------------------- /src/styles/generic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/generic.scss -------------------------------------------------------------------------------- /src/styles/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/home.scss -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/styles/meetup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/meetup.scss -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/styles/past-meetups-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/past-meetups-page.scss -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/templates/about-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/templates/about-page.js -------------------------------------------------------------------------------- /src/templates/meetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/templates/meetup.js -------------------------------------------------------------------------------- /src/templates/past-meetups-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/src/templates/past-meetups-page.js -------------------------------------------------------------------------------- /static/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/admin/config.yml -------------------------------------------------------------------------------- /static/img/annie-spratt-608001-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/annie-spratt-608001-unsplash.jpg -------------------------------------------------------------------------------- /static/img/benjamin-parker-736167-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/benjamin-parker-736167-unsplash.jpg -------------------------------------------------------------------------------- /static/img/edward-cisneros-415601-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/edward-cisneros-415601-unsplash.jpg -------------------------------------------------------------------------------- /static/img/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/email.svg -------------------------------------------------------------------------------- /static/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/facebook.svg -------------------------------------------------------------------------------- /static/img/humphrey-muleba-795250-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/humphrey-muleba-795250-unsplash.jpg -------------------------------------------------------------------------------- /static/img/jakob-dalbjorn-730178-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/jakob-dalbjorn-730178-unsplash.jpg -------------------------------------------------------------------------------- /static/img/jonas-kakaroto-577554-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/jonas-kakaroto-577554-unsplash.jpg -------------------------------------------------------------------------------- /static/img/js-wakanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/js-wakanda.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/lucas-sankey-378674-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/lucas-sankey-378674-unsplash.jpg -------------------------------------------------------------------------------- /static/img/marius-ciocirlan-398931-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/marius-ciocirlan-398931-unsplash.jpg -------------------------------------------------------------------------------- /static/img/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/meetup.svg -------------------------------------------------------------------------------- /static/img/michael-dam-258165-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/michael-dam-258165-unsplash.jpg -------------------------------------------------------------------------------- /static/img/neonbrand-509131-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/neonbrand-509131-unsplash.jpg -------------------------------------------------------------------------------- /static/img/organizer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/organizer-1.jpg -------------------------------------------------------------------------------- /static/img/organizer-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/organizer-2.jpg -------------------------------------------------------------------------------- /static/img/ramy-kabalan-796973-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/ramy-kabalan-796973-unsplash.jpg -------------------------------------------------------------------------------- /static/img/teemu-paananen-376238-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/teemu-paananen-376238-unsplash.jpg -------------------------------------------------------------------------------- /static/img/television.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/television.png -------------------------------------------------------------------------------- /static/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/static/img/twitter.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertcoopercode/gatsby-netlify-cms/HEAD/yarn.lock --------------------------------------------------------------------------------