├── .nojekyll ├── _course-template ├── CHANGELOG.md ├── style.css ├── index.html ├── template_cohort-index.html ├── README.md ├── template_index.html └── demo-gdi-slides.html ├── .gitignore ├── shared-assets ├── imgs │ ├── favicon.ico │ ├── gdi-logos │ │ ├── gdi-logo_black.png │ │ ├── gdi-logo_peach.png │ │ ├── gdi-logo_white.png │ │ ├── circle-gdi-logo-OLD.png │ │ ├── gdi-logo_raspberry.png │ │ ├── gdi-circle-logo_peach.png │ │ ├── gdi-square-logo_peach.png │ │ ├── gdi-wordmark-tagline.png │ │ ├── gdi-circle-logo_raspberry.png │ │ └── gdi-square-logo_raspberry.png │ └── stock-img │ │ ├── celebration_mircea-flickr.jpg │ │ ├── celebration_clay-banks-unsplash.jpg │ │ ├── celebration_dayne-topkin-unsplash.jpg │ │ └── celebration_hannah-busing-unsplash.jpg ├── fonts │ ├── league-gothic │ │ ├── LICENSE │ │ ├── league-gothic.eot │ │ ├── league-gothic.ttf │ │ ├── league-gothic.woff │ │ └── league-gothic.css │ ├── gotham │ │ ├── league_gothic_license │ │ ├── Gotham-Bold.otf │ │ ├── Gotham-Book.otf │ │ ├── Gotham-Medium.otf │ │ ├── Gotham-BoldIta.otf │ │ ├── Gotham-BookIta.otf │ │ ├── Gotham-MediumIta.otf │ │ ├── Gotham-BoldItalic.otf │ │ ├── Gotham-BookItalic.otf │ │ ├── Gotham-MediumItalic.otf │ │ ├── gotham-light-webfont.ttf │ │ ├── gotham-thin-webfont.ttf │ │ ├── league_gothic-webfont.eot │ │ ├── league_gothic-webfont.ttf │ │ ├── gothamrnd-bold-webfont.ttf │ │ ├── gothamrnd-book-webfont.ttf │ │ ├── gothamrnd-light-webfont.ttf │ │ ├── league_gothic-webfont.woff │ │ ├── gotham-lightitalic-webfont.ttf │ │ ├── gotham-thinitalic-webfont.ttf │ │ ├── gothamrnd-boldital-webfont.ttf │ │ ├── gothamrnd-bookital-webfont.ttf │ │ ├── gothamrnd-medital-webfont.ttf │ │ ├── gothamrnd-medium-webfont.ttf │ │ ├── gothamrnd-lightital-webfont.ttf │ │ └── league_gothic-webfont.svg │ └── source-sans-pro │ │ ├── source-sans-pro-italic.eot │ │ ├── source-sans-pro-italic.ttf │ │ ├── source-sans-pro-italic.woff │ │ ├── source-sans-pro-regular.eot │ │ ├── source-sans-pro-regular.ttf │ │ ├── source-sans-pro-regular.woff │ │ ├── source-sans-pro-semibold.eot │ │ ├── source-sans-pro-semibold.ttf │ │ ├── source-sans-pro-semibold.woff │ │ ├── source-sans-pro-semibolditalic.eot │ │ ├── source-sans-pro-semibolditalic.ttf │ │ ├── source-sans-pro-semibolditalic.woff │ │ ├── source-sans-pro.css │ │ └── LICENSE ├── js │ └── revealConfig.js └── css │ └── gdi-theme.css └── README.md /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_course-template/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_course-template/style.css: -------------------------------------------------------------------------------- 1 | /* Add Custom CSS Here if Applicable */ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | .vscode/ -------------------------------------------------------------------------------- /shared-assets/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/favicon.ico -------------------------------------------------------------------------------- /shared-assets/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/league_gothic_license: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-Bold.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-Book.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-Medium.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-BoldIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-BoldIta.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-BookIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-BookIta.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-MediumIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-MediumIta.otf -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-logo_black.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-logo_peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-logo_peach.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-logo_white.png -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-BoldItalic.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-BookItalic.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/Gotham-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/Gotham-MediumItalic.otf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gotham-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gotham-light-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gotham-thin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gotham-thin-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/league_gothic-webfont.eot -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /shared-assets/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/circle-gdi-logo-OLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/circle-gdi-logo-OLD.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-logo_raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-logo_raspberry.png -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-bold-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-book-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-book-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-light-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/league_gothic-webfont.woff -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-circle-logo_peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-circle-logo_peach.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-square-logo_peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-square-logo_peach.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-wordmark-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-wordmark-tagline.png -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gotham-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gotham-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gotham-thinitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gotham-thinitalic-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-boldital-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-boldital-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-bookital-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-bookital-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-medital-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-medital-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-medium-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/gothamrnd-lightital-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/gotham/gothamrnd-lightital-webfont.ttf -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-circle-logo_raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-circle-logo_raspberry.png -------------------------------------------------------------------------------- /shared-assets/imgs/gdi-logos/gdi-square-logo_raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/gdi-logos/gdi-square-logo_raspberry.png -------------------------------------------------------------------------------- /shared-assets/imgs/stock-img/celebration_mircea-flickr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/stock-img/celebration_mircea-flickr.jpg -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /shared-assets/imgs/stock-img/celebration_clay-banks-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/stock-img/celebration_clay-banks-unsplash.jpg -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /shared-assets/imgs/stock-img/celebration_dayne-topkin-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/stock-img/celebration_dayne-topkin-unsplash.jpg -------------------------------------------------------------------------------- /shared-assets/imgs/stock-img/celebration_hannah-busing-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/imgs/stock-img/celebration_hannah-busing-unsplash.jpg -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girldevelopit/gdi-slides-template/HEAD/shared-assets/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /shared-assets/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('./league-gothic.eot'); 4 | src: url('./league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('./league-gothic.woff') format('woff'), 6 | url('./league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | -------------------------------------------------------------------------------- /_course-template/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | GDI Course Template Folder 11 | 12 | 13 | Intentionally Blank. 14 | 15 | 16 | -------------------------------------------------------------------------------- /shared-assets/js/revealConfig.js: -------------------------------------------------------------------------------- 1 | const srcUrlPrefix = 'https://cdn.jsdelivr.net/npm/reveal.js@4.1.0/'; 2 | Reveal.initialize({ 3 | hash: true, 4 | center: true, 5 | slideNumber: true, 6 | showNotes: false, 7 | margin: 0.1, 8 | preloadIframes: true, 9 | plugins: [RevealHighlight], 10 | pdfSeparateFragments: true, 11 | }); 12 | 13 | // add HighlightJS-badge (options are optional) 14 | var options = { 15 | copyIconContent: '📄', 16 | checkIconContent: '✅', 17 | }; 18 | window.highlightJsBadge(options); 19 | 20 | if (window.location.search == '?print-pdf') { 21 | var uncounted = document.querySelectorAll("[data-visibility='uncounted']"); 22 | uncounted.forEach((node) => { 23 | node.parentNode.classList.add('no-print'); 24 | }); 25 | } 26 | -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Source Sans Pro'; 3 | src: url('./source-sans-pro-regular.eot'); 4 | src: url('./source-sans-pro-regular.eot?#iefix') format('embedded-opentype'), 5 | url('./source-sans-pro-regular.woff') format('woff'), 6 | url('./source-sans-pro-regular.ttf') format('truetype'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | @font-face { 12 | font-family: 'Source Sans Pro'; 13 | src: url('./source-sans-pro-italic.eot'); 14 | src: url('./source-sans-pro-italic.eot?#iefix') format('embedded-opentype'), 15 | url('./source-sans-pro-italic.woff') format('woff'), 16 | url('./source-sans-pro-italic.ttf') format('truetype'); 17 | font-weight: normal; 18 | font-style: italic; 19 | } 20 | 21 | @font-face { 22 | font-family: 'Source Sans Pro'; 23 | src: url('./source-sans-pro-semibold.eot'); 24 | src: url('./source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'), 25 | url('./source-sans-pro-semibold.woff') format('woff'), 26 | url('./source-sans-pro-semibold.ttf') format('truetype'); 27 | font-weight: 600; 28 | font-style: normal; 29 | } 30 | 31 | @font-face { 32 | font-family: 'Source Sans Pro'; 33 | src: url('./source-sans-pro-semibolditalic.eot'); 34 | src: url('./source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'), 35 | url('./source-sans-pro-semibolditalic.woff') format('woff'), 36 | url('./source-sans-pro-semibolditalic.ttf') format('truetype'); 37 | font-weight: 600; 38 | font-style: italic; 39 | } 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## This is a template or model repository for Girl Develop It's technical track repos. 2 | 3 | To prevent _"repo sprawl"_ (creating repos for individual courses), GDI has track- or subject-matter-specific repositories that contain individual courses: 4 | 5 | - [HTML & CSS](https://github.com/girldevelopit/gdi-html-css) 6 | - [JavaScript](https://github.com/girldevelopit/gdi-javascript) 7 | - [Python](https://github.com/girldevelopit/gdi-python) 8 | - [User Experience](https://github.com/girldevelopit/gdi-ux) 9 | - [Data Science](https://github.com/girldevelopit/gdi-data-science) 10 | - [Tech 101](https://github.com/girldevelopit/gdi-tech101) 11 | 12 | #### :exclamation: Use this template repo to create a new technical track or subject-matter repository; do not use this template to start a new course. 13 | 14 | - To start a new course, go to a specific track repo (_see the list above_) and use the `_course-template` folder in that repo. 15 | 16 | ## Content 17 | 18 | This template repo contains a `_course-template` folder and a `shared-assets` folder. 19 | 20 | The `_course-template` folder is the template for creating **individual courses** that go into the primary track or subject-matter repo. 21 | 22 | - The `_course-template` folder includes a [README](/_course-template/README.md) with instructions for creating courses. 23 | 24 | The `shared-assets` folder holds custom GDI `css`, `images`, `js` files that **all** course folders in a primary track repo reference. 25 | 26 | - :exclamation: **Do not add course-specific assets or content to the shared-assets folder.** 27 | 28 | ## Usage 29 | 30 | To create a new track or subject-matter repo: 31 | 32 | - Start and name a new repo in [GDI's main or organizational github account](https://github.com/orgs/girldevelopit/repositories) 33 |
34 | 35 | - Duplicate the contents of this template repo and add them to the new repo 36 |
37 | 38 | - Delete the contents of this README, and update with a description about the new repo 39 |
40 | 41 | - Duplicate the `_course-template` folder to create or start new courses 42 | 43 | - :exclamation: Do not delete the `_course-template` folder; it should always be available to create other courses 44 | - A track repo can contain more than one course 45 |
46 | 47 | - Make sure to include/keep the `shared-assets` folder in the new repo 48 |
49 | 50 | - Create a `.gitignore` file in the new repo's root directory to exclude hidden system files 51 |
52 | 53 | - RECOMMENDED: Create an empty `.nojekyll` file in the new repo's root directory; this allows the repo to [bypass Jekyll processing for Github Pages](https://github.blog/2009-12-29-bypassing-jekyll-on-github-pages/) 54 | -------------------------------------------------------------------------------- /shared-assets/css/gdi-theme.css: -------------------------------------------------------------------------------- 1 | /* GDI theme colors */ 2 | :root { 3 | --gdi-raspberry: #7d214b; 4 | --gdi-peach: #bf4e49; 5 | --gdi-lemon: #f0e182; 6 | --gdi-blackberry: #1a1735; 7 | --gdi-grapefruit: #ebac9d; 8 | --gdi-grapefruit-light: #facec3; 9 | --gdi-kiwi: #86a89f; 10 | --gdi-pink: #f05b62; 11 | } 12 | 13 | @font-face { 14 | font-family: Gotham-Round; 15 | src: local('Gotham-Round'), 16 | url(../fonts/gotham/gothamrnd-light-webfont.ttf) format('truetype'); 17 | font-weight: 400; 18 | font-style: normal; 19 | } 20 | 21 | .reveal, 22 | body { 23 | font-family: Gotham-Round, sans-serif; 24 | } 25 | 26 | .reveal h1, 27 | .reveal h2, 28 | .reveal h3, 29 | .reveal h4, 30 | .reveal h5, 31 | .reveal h6 { 32 | font-family: Gotham-Round, sans-serif; 33 | margin: 0 0 20px; 34 | color: var(--gdi-pink); 35 | line-height: 1.35em; 36 | text-transform: none; 37 | } 38 | 39 | .reveal h1 { 40 | font-size: 2.33331em; 41 | } 42 | .reveal h2 { 43 | font-size: 1.73332em; 44 | } 45 | .reveal h3 { 46 | font-size: 1.33332em; 47 | } 48 | .reveal h4 { 49 | font-size: 0.99999em; 50 | } 51 | .reveal h5 { 52 | font-size: 0.66666em; 53 | } 54 | .reveal h6 { 55 | font-size: 0.33333em; 56 | } 57 | .reveal table { 58 | font-size: 0.75em; 59 | } 60 | .reveal p { 61 | font-size: 0.68em; 62 | margin: 0 0 16px 0; 63 | } 64 | 65 | .reveal a:not(img) { 66 | color: #5500e5; 67 | text-decoration: none; 68 | transition: color 0.15s ease; 69 | } 70 | 71 | .reveal a:not(img):hover { 72 | color: var(--gdi-blackberry); 73 | text-decoration: underline; 74 | text-shadow: none; 75 | border: none; 76 | } 77 | 78 | .reveal a img:hover { 79 | background: hsla(0, 0%, 100%, 0.2); 80 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); 81 | } 82 | 83 | .reveal .roll span:after { 84 | color: #fff; 85 | background: #01a9b4; 86 | } 87 | 88 | .reveal section img { 89 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 90 | transition: all 0.2s linear; 91 | max-height: 500px; 92 | max-width: 80%; 93 | } 94 | 95 | .reveal section img.noborder { 96 | border-width: 0; 97 | box-shadow: none; 98 | } 99 | 100 | .reveal .controls { 101 | color: var(--gdi-pink); 102 | } 103 | 104 | .reveal .progress span { 105 | background: var(--gdi-pink); 106 | transition: width 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985); 107 | } 108 | 109 | .flex { 110 | display: flex; 111 | justify-content: space-around; 112 | flex-wrap: wrap; 113 | gap: 0.75rem; 114 | } 115 | 116 | .flex .cta { 117 | flex-basis: 40%; 118 | } 119 | 120 | .cta { 121 | display: inline-block; 122 | padding: 20px; 123 | border-radius: 6px; 124 | background-color: #01a9b4; 125 | text-transform: uppercase; 126 | font-size: 0.6em; 127 | letter-spacing: 1px; 128 | font-weight: bold; 129 | } 130 | 131 | .reveal .cta:not(img) { 132 | color: #fff; 133 | transition: background-color 1s ease; 134 | } 135 | 136 | .reveal .cta:not(img):hover { 137 | background-color: #2a4758; 138 | color: #fff; 139 | text-decoration: none; 140 | } 141 | 142 | .reveal .cta.inactive { 143 | background: #333; 144 | } 145 | 146 | .reveal .inactive { 147 | pointer-events: none; 148 | } 149 | 150 | .reveal footer { 151 | position: fixed; 152 | width: 100%; 153 | bottom: 0; 154 | left: 0; 155 | } 156 | 157 | .reveal footer .copyright { 158 | font-size: 1rem; 159 | padding: 0 10px; 160 | } 161 | 162 | .reveal footer .copyright img, 163 | .reveal footer .copyright a img { 164 | margin: 5px 0; 165 | } 166 | 167 | .reveal footer .copyright p { 168 | margin: 0; 169 | } 170 | 171 | .reveal pre { 172 | font-size: 0.425em; 173 | margin: 15px auto; 174 | line-height: 1em; 175 | width: 80%; 176 | } 177 | 178 | .reveal small { 179 | font-size: 0.45em; 180 | } 181 | 182 | .reveal .slide-number { 183 | background-color: rgba(0, 0, 0, 0.2); 184 | } 185 | 186 | .reveal .slide-number a { 187 | color: var(--gdi-pink); 188 | } 189 | 190 | ol, 191 | ul { 192 | font-size: 0.8em; 193 | line-height: 1.75; 194 | max-width: 800px; 195 | } 196 | 197 | .flex-container { 198 | display: flex; 199 | justify-content: space-between; 200 | } 201 | 202 | .flex-item { 203 | flex-basis: 48%; 204 | } 205 | 206 | .reveal section > .flex-container img { 207 | max-width: 100%; 208 | } 209 | 210 | .flex-item img { 211 | margin: 0; 212 | } 213 | -------------------------------------------------------------------------------- /shared-assets/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License 2 | 3 | Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. 4 | 5 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 6 | This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL 7 | 8 | —————————————————————————————- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | —————————————————————————————- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. 14 | 15 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. 16 | 17 | DEFINITIONS 18 | “Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. 19 | 20 | “Reserved Font Name” refers to any names specified as such after the copyright statement(s). 21 | 22 | “Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s). 23 | 24 | “Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. 25 | 26 | “Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. 27 | 28 | PERMISSION & CONDITIONS 29 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 30 | 31 | 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 32 | 33 | 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 34 | 35 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 36 | 37 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 38 | 39 | 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. 40 | 41 | TERMINATION 42 | This license becomes null and void if any of the above conditions are not met. 43 | 44 | DISCLAIMER 45 | THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /_course-template/template_cohort-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 11 | 14 | 17 | 20 | 21 | 22 | GDI HTML Slides Template 23 | 24 | 28 | 29 | 30 | 33 | 36 | 40 | 41 | 42 | 45 | 46 | 47 | 50 | 51 | 52 | 55 | 56 | 57 |
58 | 59 | 60 | 61 | 62 | 63 |
64 | 65 |
66 | GDI Logo 71 |
72 |

Welcome to Girl Develop It

73 |
74 | 75 | 76 |
77 |

Course Name

78 |

Class Slides

79 |
80 | Introduction 86 | Class 1 92 | Class 2 98 | Class 3 104 | Class 4 110 |
111 |
112 |
113 | 114 | 115 | 116 | 117 | 135 |
136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | -------------------------------------------------------------------------------- /_course-template/README.md: -------------------------------------------------------------------------------- 1 | # GDI HTML Slides Template 2 | 3 | 4 | 5 | - [GDI HTML Slides Template](#gdi-html-slides-template) 6 | - [Usage Instructions](#usage-instructions) 7 | - [Using the CHANGELOG](#using-the-changelog) 8 | - [Live Demo and Template Slides](#live-template-slides) 9 | - [Example Courses](#example-courses) 10 | - [Course Creation Tips](#course-creation-tips) 11 | - [Slide Markup](#slide-markup) 12 | - [Publishing Your Course](#publishing-your-course) 13 | 14 | 15 | 16 | --- 17 | 18 | **Girl Develop It** uses a customized HTML slide template for its open-source course content. 19 | 20 | Our slides are powered by [Reveal.js](https://revealjs.com/), the popular HTML presentation framework. For simplicity and ease of use, the Reveal.js files are served via CDN. 21 | 22 | The template files reference a **`shared-assets`** folder in the [main repo](/shared-assets/) that hold the following folders: 23 | 24 | - `css` - Contains the `gdi-theme.css` stylesheet 25 | - `imgs` - Contains GDI logo images and stock (Unsplash) images 26 | - `fonts` - Contains files for GDI's primary fonts: `Gotham`, `League Gothic` and `Source Sans Pro` 27 | - `js` - Contains `revealConfig.js` file 28 | 29 | :exclamation: DO NOT ADD MATERIAL TO THE **`shared-assets`** FOLDER.:exclamation: 30 | 31 | :exclamation: If you're using new images or custom CSS or custom JS for your course, create a course-specific `images`, `css`, or `js` folder in your course folder and place files there. 32 | 33 | --- 34 | 35 | ## Usage Instructions 36 | 37 | - Fork the parent repo where your course folder will live 38 |
39 | 40 | - To create a new course, duplicate the `_course-template` folder 41 |
42 | 43 | - Rename the duplicate folder with your course title 44 |
45 | 46 | - Review `demo-gdi-slides.html` for recommended ways we use Reveal.js features 47 | 48 | - Copy or model the demo slides and code snippets as needed 49 | - Keep (rather than delete) the `demo-gdi-slides.html` for future reference 50 |
51 | 52 | - To build content for a [single-class course](#examples): 53 | 54 | - Rename `template_index.html` to `index.html` 55 | - Delete the duplicate `index` file 56 | - Make updates as outlined in the file's instructions, for example: 57 | - Update course name in the `` tag 58 | - Update course name in the `<footer>` tag 59 | - etc. 60 | - Create course slides - (Instructions are included in template file - See also [Slide Markup](#slide-markup) below) 61 | <br/> 62 | 63 | - To build content for a course with [more than one class / session](#examples) -- also known as a **mini-cohort** _[2-3 classes]_ or a **cohort** _[4+ classes]_: 64 | 65 | - Rename `template_cohort-index.html` to `index.html`; it serves as a cover page or 'dashboard' that links to all classes in the cohort 66 | - Duplicate `template_index.html` to create subsequent class files: `class1.html`, `class2.html`, etc. 67 | - OPTIONAL: Create an `intro.html` file for instructor and course introduction 68 | - Create course slides - Make updates as outlined in the file's instructions 69 | <br/> 70 | 71 | - If using new images for your slides, create an `images` folder in your course folder 72 | 73 | - :exclamation: Do not add images to the `shared-assets` folder 74 | - :bulb: Include credit /attribution for image(s) when possible 75 | - :bulb: Optimize images to reduce file size 76 | - Use an image compression tool such as tinypng.com 77 | <br/> 78 | 79 | - Need or want to use custom CSS? Create a `style.css` file or a `css` folder in your course folder; add your custom code there 80 | 81 | - :exclamation: Do not add custom css to the shared `gdi-theme.css` file in the `shared-assets` folder, or add custom css file to the folder 82 | - Link the custom stylesheet to your course `html` file(s) 83 | <br/> 84 | 85 | - **Recommended**: Update this `README` (delete original content first) with any of the following that can help future instructors to teach the course: 86 | 87 | - Course goals and objectives 88 | - Course outline or structure 89 | - Teaching tips 90 | - Suggested exercises 91 | - Resources 92 | - etc. 93 | <br> 94 | 95 | - **Optional / Useful Material to Include**: 96 | - Create folders for `demos` and `exercises` 97 | - Create a `resources.html` file to curate recommended resources, links, etc., cited in the course 98 | 99 | ### Using the CHANGELOG 100 | 101 | ## Live Template Slides 102 | 103 | - [GDI Demo Slides](https://girldevelopit.github.io/gdi-html-css/_course-template/demo-gdi-slides.html) 104 | - [Template Index Slides](https://girldevelopit.github.io/gdi-html-css/_course-template/template_index.html) 105 | - [Template Cohort Index / Dashboard](https://girldevelopit.github.io/gdi-html-css/_course-template/template_cohort-index.html) 106 | 107 | ## Example Courses 108 | 109 | Cohort course folder structure: 110 | 111 | - [CSS Grids Basic](https://github.com/girldevelopit/gdi-html-css/tree/main/css-grid-basics) (_Update in progress_) 112 | - [Live Slides](https://girldevelopit.github.io/gdi-html-css/css-grid-basics/) 113 | 114 | Single-class course folder structure: 115 | 116 | - Intro to JavaScript (_Update in progress_) 117 | 118 | ## Course Creation Tips 119 | 120 | - Limit the amount of content on each slide: 121 | 122 | - Avoid a long list of bullet points 123 | - Split long text content into two or more slides 124 | - If using RevealJS's [fragments feature](https://revealjs.com/fragments/) to present content, do so sparingly 125 | <br> 126 | 127 | - Lean more towards visual content (images, gifs, videos, code snippets) to support learning concepts 128 | <br> 129 | 130 | - To make the course curriculum helpful for future instructors to use: 131 | 132 | - Add details such as instructions for teaching the course; FAQs; suggested improvements or changes; class management tips and best practices to the course `README.md` 133 | - Add a `demos` and/or `exercises` folder to store exercises you've used or recommend for future classes 134 | 135 | ## Slide Markup 136 | 137 | Markup hierarchy needs to be `<div class="reveal"> <div class="slides"> <section>` where the `<section>` represents one slide and can be repeated indefinitely. 138 | 139 | ```html 140 | <div class="reveal"> 141 | <div class="slides"> 142 | <section>Slide 1</section> 143 | <section>Slide 2</section> 144 | <section>Slide 3</section> 145 | </div> 146 | </div> 147 | ``` 148 | 149 | ## Publishing Your Course 150 | 151 | _Description coming..._ 152 | -------------------------------------------------------------------------------- /_course-template/template_index.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <meta charset="utf-8" /> 5 | <meta 6 | name="viewport" 7 | content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> 8 | <meta 9 | name="description" 10 | content="Girl Develop It framework for easily creating beautiful presentations using HTML in GDI theme. Based on Hakim El Hattab's reveal.js" /> 11 | <meta 12 | name="author" 13 | content="Girl Develop It" /> 14 | <meta 15 | name="apple-mobile-web-app-capable" 16 | content="yes" /> 17 | <meta 18 | name="apple-mobile-web-app-status-bar-style" 19 | content="black-translucent" /> 20 | 21 | <!-- Update with GDI Course Name --> 22 | <title>GDI HTML Slides Template 23 | 24 | 28 | 29 | 30 | 33 | 36 | 40 | 41 | 42 | 45 | 46 | 47 | 50 | 51 | 52 | 55 | 56 | 57 |
58 | 59 | 60 | 61 | 62 | 63 |
64 | 65 |
66 | GDI Logo 71 |
72 |

Welcome to Girl Develop It

73 |
74 | 75 | 76 |
77 |

Course Title

78 |
79 | 80 | 81 |
82 |

Instructor Intro

83 |
84 | 85 | 86 |
87 |

TA Intro

88 |
89 | 90 | 91 |
92 |

Student Intros or Ice Breaker

93 |
94 | 95 | 96 |
97 |

Course Goals

98 |
99 | 100 | 101 |
102 |

Course Outline or Agenda

103 |
104 | 105 | 106 |
107 |

Before we start...

108 |
    109 |
  • Display preferred name and/or pronoun
  • 110 |
  • Don't be camera-shy 🙂
  • 111 |
  • Participate and ask questions
  • 112 |
  • Every question is important
  • 113 |
  • Have fun!
  • 114 |
115 |
116 | 117 | 118 | 119 | 120 | 121 | 122 |
123 |

Course Content Starts Here...

124 |
125 | 126 | 127 |
128 |

Let's Develop It!

129 | 130 |
131 | 132 | 133 |
134 |

Next Class

135 |
    136 |
  • ?
  • 137 |
  • ?
  • 138 |
  • ?
  • 139 |
140 |
141 | 142 | 143 |
144 |

Share What You've Built!

145 |
146 | 147 | 148 |
149 |

You did it!

150 | People celebrating 153 |
154 | Photo credit: 156 | Hannah Busing 161 | 162 |
163 |
164 | 165 | 166 |
167 |

Resources

168 |
169 | 170 | 171 | 172 |
173 |

Give Us Your Feedback

174 |

Course Survey

175 |
176 | 177 | 178 |
179 |

Q&A

180 |
181 | 182 | 183 | 184 |
185 |

Upcoming GDI Courses

186 |
    187 |
  • Course Name
  • 188 |
  • Course Name
  • 189 |
  • Course Name
  • 190 |
191 |

192 | GDI Classes and Events Calendar 198 |

199 |
200 | 201 | 202 |
203 |

Keep in Touch

204 |
205 | 206 | 207 |
208 | GDI Logo 213 |
214 |

Thank You!

215 |
216 |
217 | 218 | 219 | 220 | 221 | 239 |
240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /_course-template/demo-gdi-slides.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 11 | 14 | 17 | 20 | 21 | 22 | GDI Demo Slides Template 23 | 24 | 28 | 29 | 30 | 33 | 36 | 40 | 41 | 42 | 45 | 46 | 47 | 50 | 51 | 52 |
53 | 54 | 55 | 56 | 57 | 58 |
59 | 60 |
61 | GDI Logo 66 |
67 |

Welcome to Girl Develop It

68 |
69 | 70 | 71 |
72 |

Demo:

73 |

GDI's HTML Presentation Slides

74 |

75 | Based on 76 | Reveal.js 81 |

82 |
83 | 84 | 85 |
86 |

Intro

87 |
    88 |
  • 89 | Reveal.js is a framework for easily creating beautiful, animated HTML slide 90 | presentations. 91 |
  • 92 |
  • 93 | The following slides illustrate how to present GDI content with reveal.js. 94 |
  • 95 |
  • 96 | Copy code snippets from this demo file as needed to create GDI HTML slides. 97 |
  • 98 |
99 |
100 | 101 | 102 |
103 |

Heading h1

104 |

Heading h2

105 |

Heading h3

106 |

Heading h4

107 |
108 | 109 | 110 |
111 |

Basic text style

112 |
113 | 114 | 115 |
116 |

Marvelous Unordered List

117 |
    118 |
  • No order here
  • 119 |
  • Or here
  • 120 |
  • Or here
  • 121 |
122 |
123 | 124 | 125 |
126 |

Fantastic Ordered List

127 |
    128 |
  1. One is smaller than...
  2. 129 |
  3. Two is smaller than...
  4. 130 |
  5. Three!
  6. 131 |
132 |
133 | 134 | 135 |
136 |

Revealing Content

137 |

Content

138 |

More content...

139 |

Even more content...

140 |

And we're done

141 |

CAVEAT: Use this feature sparingly

142 |
143 | 144 | 145 |
146 |

Images

147 | 151 |
152 |

Remember to give credit.

153 | Photo credit: 155 | Dayne Topkin (Unsplash) 160 | 161 |
162 |
163 | 164 | 165 |
166 |

Image and Text

167 |
168 |
169 | 172 |
173 |
174 |

175 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. Cumque quas 176 | quidem animi, architecto blanditiis...

To reverse order, 177 | simply switch the code snippets. 178 |

179 |
180 |
181 |
182 | 183 | 184 |
186 |

Add a background Image

187 |
188 | 189 | 190 |
191 |

192 | Add Background Colors to Slides 193 |

194 |

195 | See 196 | GDI Brand Colors 201 |

202 |
203 | 204 | 205 |
206 |

Animated Images/GIFs

207 | Animated leopard morphing into a fruit or vegetable 210 |
211 | 212 | 213 |
214 |

Embed Video

215 | 223 |

224 |

The next slide shows adding video as a background.

225 |
226 | 227 | 228 |
232 | 233 | 234 |
235 |

Tables for Tabular Data

236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 |
Data typeExample values
Integers2 44 -3
Floats3.14 4.5 -2.0
BooleansTrue False
Strings'¡hola!' 'its python time!'
262 |
263 | 264 | 265 |
266 |

Slides with Code: Python

267 |

Click the icon in the upper right of the code box to copy the code.

268 |
269 | 						
270 | def add_numbers_between(start, end):
271 |   sum = 0
272 |   for n in range(start, end):
273 | 	  sum += n
274 | 	return n
275 | 
276 | add_numbers_between(5, 10)
277 | 						
278 | 					
279 |
280 | 281 | 282 |
283 |

Slides with Code: HTML

284 |
285 |             
286 | 

Hello World.

287 |
288 |
289 |
290 | 291 | 292 |
293 |

Slides with Code: CSS

294 |
295 | 						
296 | body {
297 |   background-color: #ffffff;
298 | }
299 | 						
300 | 					
301 |
302 | 303 | 304 |
305 |

Slides with Code: JavaScript

306 |
307 |             
308 | function helloWorld(){
309 |   let name = 'GDI';
310 |   alert("Hi, " + name)
311 | }
312 |             
313 |           
314 |
315 | 316 | 317 |
318 |

Editable Slides with Code

319 |

Try editing the code!

320 |
321 |             
322 | function helloWorld(){
323 |   let name = 'GDI';
324 |   alert("Hi, " + name);
325 | } 
326 |             
327 |           
328 |
329 | 330 | 331 |
332 |

333 | These are the recommended use cases of reveal.js features for GDI slide 334 | content. 335 |

336 |
337 | 338 |
339 |

340 | Interested in learning more about reveal.js? Visit the framework's 341 | website 346 | for a full demo. 347 |

348 |
349 |
350 | 351 | 369 |
370 | 371 | 372 | 373 | 374 | 375 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | -------------------------------------------------------------------------------- /shared-assets/fonts/gotham/league_gothic-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | --------------------------------------------------------------------------------