From d994919b98428583b22e8f8989563fb076e5acdf Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 7 Apr 2023 16:04:12 -0400 Subject: [PATCH 01/67] initial commit - Create webinars.json - Create bios.json - Create tutorials.json - Adds additional feed data - Create courses.json - update logic - Update courses.json - Create complete.json - Create pages.json - update feeds - feed DRY-ness --- _production_config.yml | 2 +- feeds/_partials/bios.html | 11 +++++ feeds/_partials/courses.html | 10 +++++ feeds/_partials/tutorials.html | 11 +++++ feeds/_partials/webinars.html | 14 +++++++ feeds/bios.json | 12 ++++++ feeds/complete.json | 24 +++++++++++ feeds/courses.json | 12 ++++++ feeds/pages.json | 24 +++++++++++ feeds/tutorials.json | 12 ++++++ feeds/webinars.json | 75 ++++++++++++++++++++++++++++++++++ 11 files changed, 206 insertions(+), 1 deletion(-) create mode 100644 feeds/_partials/bios.html create mode 100644 feeds/_partials/courses.html create mode 100644 feeds/_partials/tutorials.html create mode 100644 feeds/_partials/webinars.html create mode 100644 feeds/bios.json create mode 100644 feeds/complete.json create mode 100644 feeds/courses.json create mode 100644 feeds/pages.json create mode 100644 feeds/tutorials.json create mode 100644 feeds/webinars.json diff --git a/_production_config.yml b/_production_config.yml index a7e31aa7e..85a6cd18d 100644 --- a/_production_config.yml +++ b/_production_config.yml @@ -15,7 +15,7 @@ exclude: - 'README.md' - 'netlify.toml' - '.jekyll-cache' - - 'local' + - 'local' include: - '_redirects' diff --git a/feeds/_partials/bios.html b/feeds/_partials/bios.html new file mode 100644 index 000000000..2b804f870 --- /dev/null +++ b/feeds/_partials/bios.html @@ -0,0 +1,11 @@ +{%- for bio_hash in site.data.bios -%} + {%- assign bio = bio_hash[1] -%} + { + "id": "{{bio_hash[0]}}", + "title": "{{bio.name}}", + "subtitle": "{{bio.subtitle}}", + "img": "{{ site.url }}/img/webinar-bio-headshots/{{bio.headshot}}", + "description": "{{bio.description | strip_html}}" + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html new file mode 100644 index 000000000..d0a1984de --- /dev/null +++ b/feeds/_partials/courses.html @@ -0,0 +1,10 @@ +{%- assign list = site.data.courses | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_type', 'type' -%} + {%- assign data = data | replace: 'poster_art', 'img' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html new file mode 100644 index 000000000..747964dfa --- /dev/null +++ b/feeds/_partials/tutorials.html @@ -0,0 +1,11 @@ +{%- assign list = site.data.take5 | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_type', 'type' -%} + {%- assign data = data | replace: 'poster_art', 'img' -%} + {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html new file mode 100644 index 000000000..bfb08d3d5 --- /dev/null +++ b/feeds/_partials/webinars.html @@ -0,0 +1,14 @@ +{%- assign list = site.data.webinars | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'event_date', 'date' -%} + {%- assign data = data | replace: 'event_guests', 'subtitle' -%} + {%- assign data = data | replace: 'event_title', 'title' -%} + {%- assign data = data | replace: 'event_ID', 'id' -%} + {%- assign data = data | replace: 'content_category', 'category' -%} + {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {%- assign data = data | replace: 'webinar_ID', 'webinar_id' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/bios.json b/feeds/bios.json new file mode 100644 index 000000000..a8e6c9fbc --- /dev/null +++ b/feeds/bios.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/bios.json +--- +{ + "title": "Gymnasium Bios Feed", + "feed_url": "{{site.url}}/feeds/bios.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/bios.html -%} +]} diff --git a/feeds/complete.json b/feeds/complete.json new file mode 100644 index 000000000..ad9c951a2 --- /dev/null +++ b/feeds/complete.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/complete.json +--- +{ + "title": "Gymnasium Complete Data Feed", + "feed_url": "{{site.url}}/feeds/complete.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": { + "bios":[ + {%-include_relative _partials/bios.html -%} + ], + "courses":[ + {%-include_relative _partials/courses.html -%} + ], + "tutorials":[ + {%-include_relative _partials/tutorials.html -%} + ], + "webinars":[ + {%-include_relative _partials/webinars.html -%} + ] + } +} diff --git a/feeds/courses.json b/feeds/courses.json new file mode 100644 index 000000000..4a4864997 --- /dev/null +++ b/feeds/courses.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/courses.json +--- +{ + "title": "Gymnasium Courses Feed", + "feed_url": "{{site.url}}/feeds/courses.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/courses.html -%} +]} diff --git a/feeds/pages.json b/feeds/pages.json new file mode 100644 index 000000000..d246cd19e --- /dev/null +++ b/feeds/pages.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/pages.json +--- + +{%- assign pages = "" | split: "," -%} + +{%- for page in site.pages -%} +{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" -%} +{%- else -%} +{%- assign pages = pages | push:page -%} +{%- endif -%} +{%- endfor -%} + +{%- assign list = pages | sort:"url" -%} +{%- assign counter = list | size -%} +{%- assign list = list | jsonify -%} +{ + "title": "Gymnasium Pages Feed", + "feed_url": "{{site.url}}/feeds/pages.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": {{list}} +} diff --git a/feeds/tutorials.json b/feeds/tutorials.json new file mode 100644 index 000000000..eb74c3c67 --- /dev/null +++ b/feeds/tutorials.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/tutorials.json +--- +{ + "title": "Gymnasium Tutorials (Take 5) Feed", + "feed_url": "{{site.url}}/feeds/tutorials.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/tutorials.html -%} +]} diff --git a/feeds/webinars.json b/feeds/webinars.json new file mode 100644 index 000000000..baa4e99a3 --- /dev/null +++ b/feeds/webinars.json @@ -0,0 +1,75 @@ +--- +layout: null +permalink: /feeds/webinars.json +--- +{%- assign webinars_ascending_date = "" | split: ", " -%} +{%- assign webinars_descending_date = "" | split: ", " -%} + +{%- assign sorted_webinars = site.data.webinars | sort: event_date -%} + +{% for webinar_list in sorted_webinars %} +{% assign webinar = webinar_list[1] %} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{% endfor %} + +{%- assign webinars_descending_date = webinars_ascending_date | reverse -%} + +{%- assign counter = site.data.webinars | size -%} + +{ + "title": "Gymnasium Webibars Feed", + "feed_url": "{{site.url}}/feeds/webinars.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ +{%- for webinar in webinars_descending_date -%} + {%- assign data = site.data.webinars[webinar] -%} + + {%- assign title = data.event_title | strip_html -%} + {%- assign description = data.short_description | strip_html -%} + {%- assign decolonized_webinar_title = title | split: ":" -%} + {%- assign webinar_title = decolonized_webinar_title[0] -%} + {%- assign webinar_subtitle = decolonized_webinar_title[1] -%} + {%- assign speaker_1 = data.speaker[0] -%} + {%- assign speaker_2 = data.speaker[1] -%} + + {%- assign webinar_url = data.permalink | prepend: site.gymurl -%} + + { + "id": "{{ data.event_ID | slice: 0,7 }}", + "slug": "{{ data.permalink | replace: '/webinars/', '' }}", + "category": "{{ data.content_category }}", + "date": "{{ data.event_date }}", + "description": "{{ data.short_description | strip_html }}", + "host": "{{ data.host }}", + "event_ogimage": "/img/social/webinars/{{ data.event_ogimage }}", + "recording_ogimage": "/img/social/webinars/{{ data.recording_ogimage }}", + "landing": {%- if data.landing -%}{{data.landing}}{%- else -%}false{%- endif -%}, + "resources": + {%- assign resources = data.resources | jsonify -%} + {{ resources}}, + "register": {%- if data.register -%}{{data.register}}{%- else -%}false{%- endif -%}, + "speakers": [ + {%- assign subcounter = data.speaker | size -%} + {%- for item in data.speaker -%} + { + "title": "{{site.data.bios[item].name}}", + "subtitle": "{{site.data.bios[item].subtitle}}", + "img": "/img/webinar-bio-headshots/{{site.data.bios[item].headshot}}", + "description": "{{site.data.bios[item].description | strip_html}}" + } + {% unless forloop.last %},{% endunless %} + {%- endfor -%} + ], + "subtitle": "{{ data.event_guests | strip_html }}", + "time": "{{ data.event_time }}", + "time_blurb": "Live streaming on {{ data.event_date | date: '%A, %B %-d, %Y at ' }}{{ data.event_time }}", + "title": "{{ title }}", + "video": {%- if data.video -%}{{data.video}}{%- else -%}false{%- endif -%}, + "video_id": "{{ data.video_ID }}", + "webinar_id": "{{ data.webinar_ID }}", + "webinar_question_key": "{{ data.webinar_question_key }}" + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} +]} From b98fc8fe896ca513d61099a025816b225935c2bb Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 4 May 2023 09:51:13 -0400 Subject: [PATCH 02/67] pages json --- feeds/_partials/pages.html | 0 feeds/generated-pages.json | 24 ++++++++++++++++++++++++ feeds/pages.json | 12 +----------- 3 files changed, 25 insertions(+), 11 deletions(-) create mode 100644 feeds/_partials/pages.html create mode 100644 feeds/generated-pages.json diff --git a/feeds/_partials/pages.html b/feeds/_partials/pages.html new file mode 100644 index 000000000..e69de29bb diff --git a/feeds/generated-pages.json b/feeds/generated-pages.json new file mode 100644 index 000000000..79a493c4d --- /dev/null +++ b/feeds/generated-pages.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/generated-pages.json +--- + +{%- assign pages = "" | split: "," -%} + +{%- for page in site.pages -%} +{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" or page.url contains "/prototypes/" or page.url contains "/dev/" -%} +{%- else -%} +{%- assign pages = pages | push:page -%} +{%- endif -%} +{%- endfor -%} + +{%- assign list = pages | sort:"url" -%} +{%- assign counter = list | size -%} +{%- assign list = list | jsonify -%} +{ + "title": "Gymnasium GeneratedPages Feed", + "feed_url": "{{site.url}}/feeds/generated-pages.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": {{list}} +} diff --git a/feeds/pages.json b/feeds/pages.json index d246cd19e..e76fdd723 100644 --- a/feeds/pages.json +++ b/feeds/pages.json @@ -2,17 +2,7 @@ layout: null permalink: /feeds/pages.json --- - -{%- assign pages = "" | split: "," -%} - -{%- for page in site.pages -%} -{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" -%} -{%- else -%} -{%- assign pages = pages | push:page -%} -{%- endif -%} -{%- endfor -%} - -{%- assign list = pages | sort:"url" -%} +{%- assign list = site.data.pages -%} {%- assign counter = list | size -%} {%- assign list = list | jsonify -%} { From 1552453f016c721ec64ec59437c1d50594535460 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 10:33:14 -0400 Subject: [PATCH 03/67] Adds netlify branch config --- _data_config.yml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ netlify.toml | 12 ++++++++++ 2 files changed, 71 insertions(+) create mode 100644 _data_config.yml diff --git a/_data_config.yml b/_data_config.yml new file mode 100644 index 000000000..6c20740bd --- /dev/null +++ b/_data_config.yml @@ -0,0 +1,59 @@ +# Setup +title: Gymnasium Data Feeds +url: https://data.thegymcms.com +gymurl: https://thegymnasium.com +aqassetsurl: https://assets.aquent.com +timezone: America/New_York +environment: data + +# Building + +exclude: + - 'docker-compose.yml' + - 'Gemfile' + - 'Gemfile.lock' + - 'README.md' + - 'netlify.toml' + - '.jekyll-cache' + - 'local' + +include: + - '_redirects' + +repository: gymnasium/gymcms + +# Conversion +markdown: kramdown +highlighter: rouge + +# Serving (local) +detach: false +port: 4000 +host: 127.0.0.1 + +# Markdown Processing +kramdown: + auto_ids: true + entity_output: as_char + toc_levels: 1..6 + smart_quotes: lsquo,rsquo,ldquo,rdquo + input: GFM + hard_wrap: false + footnote_nr: 1 + show_warnings: false + +## CSS Preprocessing/SASS (see @https://github.com/jekyll/jekyll-sass-converter) +sass: + sass_dir: _sass + style: compressed + +## Additional Plugins +plugins: + - jekyll-get-json + +## JSON Fetch +jekyll_get_json: + - data: jobs + json: 'https://assets.aquent.com/apps/gym/jobs.json?limit=1500' + - data: markets + json: 'https://assets.aquent.com/apps/gym/markets.json' diff --git a/netlify.toml b/netlify.toml index 801ec08ec..c820ee8ee 100644 --- a/netlify.toml +++ b/netlify.toml @@ -68,3 +68,15 @@ minify = true [context.production.processing.js] minify = true + +# data branch build +# https://data.thegymcms.com/ +[context.data] + command = "JEKYLL_ENV=data bundle exec jekyll build --config _data_config.yml" + +[context.data.processing.images] + compress = true +[context.data.processing.css] + minify = true +[context.data.processing.js] + minify = true From 25e6a845ccc822b2510fd5151f9364282aed2440 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:22:46 -0400 Subject: [PATCH 04/67] Replace `short_description` with `description` --- _data/collections/col001-web-development.yml | 2 +- _data/collections/col002-ux-design.yml | 2 +- _data/collections/col003-prototyping.yml | 2 +- _data/collections/col004-accessibility.yml | 2 +- _data/collections/col005-remote-work.yml | 2 +- _data/collections/col006-design-systems.yml | 2 +- _data/courses/GYM-001.yml | 2 +- _data/courses/GYM-002.yml | 4 ++-- _data/courses/GYM-003.yml | 4 ++-- _data/courses/GYM-004.yml | 2 +- _data/courses/GYM-005.yml | 4 ++-- _data/courses/GYM-006.yml | 2 +- _data/courses/GYM-007.yml | 2 +- _data/courses/GYM-008.yml | 4 ++-- _data/courses/GYM-009.yml | 2 +- _data/courses/GYM-011.yml | 2 +- _data/courses/GYM-012.yml | 2 +- _data/courses/GYM-013.yml | 2 +- _data/courses/GYM-014.yml | 2 +- _data/courses/GYM-015.yml | 2 +- _data/courses/GYM-016.yml | 4 ++-- _data/courses/GYM-017.yml | 2 +- _data/courses/GYM-018.yml | 2 +- _data/courses/GYM-019.yml | 2 +- _data/courses/GYM-020.yml | 2 +- _data/courses/GYM-100.yml | 4 ++-- _data/courses/GYM-101.yml | 4 ++-- _data/courses/GYM-102.yml | 2 +- _data/courses/GYM-103.yml | 2 +- _data/courses/GYM-104.yml | 2 +- _data/courses/GYM-105.yml | 4 ++-- _data/courses/GYM-106.yml | 2 +- _data/courses/GYM-107.yml | 2 +- _data/courses/GYM-108.yml | 2 +- _data/courses/GYM-109.yml | 2 +- _data/hero.yml | 2 +- _data/pages/courses.yml | 8 ++++---- _data/take5/GYM-5001.yml | 2 +- _data/take5/GYM-5002.yml | 2 +- _data/take5/GYM-5003.yml | 2 +- _data/take5/GYM-5004.yml | 2 +- _data/take5/GYM-5005.yml | 2 +- _data/take5/GYM-5006.yml | 2 +- _data/take5/GYM-5007.yml | 2 +- _data/take5/GYM-5008.yml | 2 +- _data/take5/GYM-5009.yml | 2 +- _data/take5/GYM-5010.yml | 2 +- _data/take5/GYM-5011.yml | 2 +- _data/take5/GYM-5012.yml | 2 +- _data/take5/GYM-5013.yml | 2 +- _data/take5/GYM-5014.yml | 2 +- _data/take5/GYM-5015.yml | 2 +- _data/take5/GYM-5016.yml | 2 +- _data/take5/GYM-5017.yml | 2 +- _data/take5/GYM-5018.yml | 2 +- _data/take5/GYM-5019.yml | 2 +- _data/take5/GYM-5020.yml | 2 +- _data/take5/GYM-5021.yml | 2 +- _data/take5/GYM-5022.yml | 2 +- _data/take5/GYM-5023.yml | 2 +- _data/take5/GYM-5024.yml | 2 +- _data/take5/GYM-5025.yml | 2 +- _data/take5/GYM-5026.yml | 2 +- _data/take5/GYM-5027.yml | 2 +- _data/take5/GYM-5028.yml | 2 +- _data/take5/GYM-5029.yml | 2 +- _data/take5/GYM-5030.yml | 2 +- _data/take5/GYM-5031.yml | 2 +- _data/take5/GYM-5032.yml | 2 +- _data/take5/GYM-5033.yml | 2 +- _data/take5/GYM-5034.yml | 2 +- _data/take5/GYM-5035.yml | 2 +- _data/take5/GYM-5036.yml | 2 +- _data/take5/GYM-5037.yml | 2 +- _data/take5/GYM-5038.yml | 2 +- _data/take5/GYM-5039.yml | 2 +- _data/take5/GYM-5040.yml | 2 +- _data/take5/GYM-5041.yml | 2 +- _data/take5/GYM-5042.yml | 2 +- _data/take5/GYM-5043.yml | 2 +- _data/take5/GYM-5044.yml | 2 +- _data/take5/GYM-5045.yml | 2 +- _data/take5/GYM-5046.yml | 2 +- _data/take5/GYM-5047.yml | 2 +- _data/take5/GYM-5048.yml | 2 +- _data/take5/GYM-5049.yml | 2 +- _data/take5/GYM-5050.yml | 2 +- _data/take5/GYM-5051.yml | 2 +- _data/take5/GYM-5052.yml | 2 +- _data/take5/GYM-5053.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- _data/webinars/web0001-designing-for-understanding.yml | 2 +- _data/webinars/web0002-designing-for-real-people.yml | 2 +- .../web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- .../web0005-state-of-responsive-web-design.yml | 2 +- _data/webinars/web0006-keeping-up-with-javascript.yml | 2 +- .../webinars/web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- .../web0013-decade-of-responsive-web-design.yml | 2 +- _data/workshops/GYM-700.yml | 2 +- _data/workshops/homepage.yml | 2 +- _includes/courses/featured/full-courses.html | 6 +++--- _includes/courses/featured/gym-shorts.html | 6 +++--- _includes/heros/live-streams/content.html | 2 +- _includes/home/featured-courses.html | 2 +- _includes/partials/meta/logic-courses.html | 2 +- _includes/partials/meta/logic-take5.html | 2 +- _includes/partials/meta/logic-webinars.html | 2 +- _includes/take5/catalog-topic-group.html | 2 +- _includes/workshops/workshop.html | 6 +++--- _layouts/take5-raw.html | 2 +- _layouts/webinar.html | 4 ++-- courses/full/course-list-recent.html | 2 +- courses/full/index.html | 2 +- courses/gym-shorts/course-list-recent.html | 2 +- courses/gym-shorts/index.html | 2 +- courses/index.html | 10 +++++----- courses/take5/course-list-recent.html | 2 +- courses/take5/index.html | 4 ++-- courses/workshops/course-list-recent.html | 2 +- docs/README.md | 4 ++-- feeds/_partials/courses.html | 2 +- feeds/_partials/tutorials.html | 2 +- feeds/_partials/webinars.html | 2 +- feeds/featured-courses.html | 2 +- feeds/webinars.json | 4 ++-- hub-pages/collections/collections.html | 2 +- take5/catalog-blitz.html | 2 +- take5/catalog-debug.html | 2 +- tests/bios.html | 2 +- tests/catalog/full-lister.html | 4 ++-- tests/catalog/test-lister.html | 10 +++++----- tests/featurer.html | 2 +- tests/take5/take5-content-test.html | 8 ++++---- tests/take5/take5-lister.html | 6 +++--- webinars/index.html | 2 +- 141 files changed, 176 insertions(+), 176 deletions(-) diff --git a/_data/collections/col001-web-development.yml b/_data/collections/col001-web-development.yml index fb7d6ff51..c82db20ad 100644 --- a/_data/collections/col001-web-development.yml +++ b/_data/collections/col001-web-development.yml @@ -2,6 +2,6 @@ collection_ID: COL-001 title: "Web Development" topic: "Development" -short_description: "Develop the skills you need to build fast, responsive websites." +description: "Develop the skills you need to build fast, responsive websites." url: https://thegymnasium.com/web-development --- diff --git a/_data/collections/col002-ux-design.yml b/_data/collections/col002-ux-design.yml index ca2514f5e..78232fe64 100644 --- a/_data/collections/col002-ux-design.yml +++ b/_data/collections/col002-ux-design.yml @@ -2,6 +2,6 @@ collection_ID: COL-002 title: "UX Design" topic: "UX" -short_description: "User experience can make or break a website. Let’s put yours to the test." +description: "User experience can make or break a website. Let’s put yours to the test." url: https://thegymnasium.com/ux-design --- diff --git a/_data/collections/col003-prototyping.yml b/_data/collections/col003-prototyping.yml index 7df4a33b5..20e0d2d11 100644 --- a/_data/collections/col003-prototyping.yml +++ b/_data/collections/col003-prototyping.yml @@ -2,6 +2,6 @@ collection_ID: COL-003 title: "Prototyping" topic: "Prototyping" -short_description: "Take the guesswork out of your design process and build better products." +description: "Take the guesswork out of your design process and build better products." url: https://thegymnasium.com/prototyping --- diff --git a/_data/collections/col004-accessibility.yml b/_data/collections/col004-accessibility.yml index da81e8ff9..59507dae4 100644 --- a/_data/collections/col004-accessibility.yml +++ b/_data/collections/col004-accessibility.yml @@ -2,6 +2,6 @@ collection_ID: COL-004 title: "Accessibility" topic: "Accessibility" -short_description: "No matter what your title is, creating an inclusive web is everyone’s job." +description: "No matter what your title is, creating an inclusive web is everyone’s job." url: https://thegymnasium.com/accessibility --- diff --git a/_data/collections/col005-remote-work.yml b/_data/collections/col005-remote-work.yml index bb94c006a..c2e64edf5 100644 --- a/_data/collections/col005-remote-work.yml +++ b/_data/collections/col005-remote-work.yml @@ -2,6 +2,6 @@ collection_ID: COL-005 title: "Remote Work" topic: "Career Skills" -short_description: "Whether you’re WFH or a digital nomad, we’ve got you covered." +description: "Whether you’re WFH or a digital nomad, we’ve got you covered." url: https://thegymnasium.com/remote-work --- diff --git a/_data/collections/col006-design-systems.yml b/_data/collections/col006-design-systems.yml index 1f7908a63..97a7afdb9 100644 --- a/_data/collections/col006-design-systems.yml +++ b/_data/collections/col006-design-systems.yml @@ -2,6 +2,6 @@ collection_ID: COL-006 title: "Design Systems" topic: "Design Systems" -short_description: "Teamwork (and creating effective pattern libraries) makes the dream work." +description: "Teamwork (and creating effective pattern libraries) makes the dream work." url: https://thegymnasium.com/design-systems --- diff --git a/_data/courses/GYM-001.yml b/_data/courses/GYM-001.yml index b79287551..221db4529 100644 --- a/_data/courses/GYM-001.yml +++ b/_data/courses/GYM-001.yml @@ -7,7 +7,7 @@ url: /courses/GYM/001/0/about poster_art: /img/course-artwork/png/gym-001.png live: true topic: "Career Skills" -short_description: "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is." +description: "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is." instructor: bharned skills: - label: "Project estimation" diff --git a/_data/courses/GYM-002.yml b/_data/courses/GYM-002.yml index 15ad3cee8..3a2a29b2d 100644 --- a/_data/courses/GYM-002.yml +++ b/_data/courses/GYM-002.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/002/0/about poster_art: /img/course-artwork/png/gym-002.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Learn the basics of Node.js by building a “sample social” profile form." +description: "This course has been retired." +description_orig: "Learn the basics of Node.js by building a “sample social” profile form." instructor: jhargrove skills: - label: "Installing a Node.js server" diff --git a/_data/courses/GYM-003.yml b/_data/courses/GYM-003.yml index f564a4c64..0a5894477 100644 --- a/_data/courses/GYM-003.yml +++ b/_data/courses/GYM-003.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/003/0/about poster_art: /img/course-artwork/png/gym-003.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Get up to speed with the Twitter Bootstrap’s grid layout system and learn how to build a responsive layout that looks great on multiple screen sizes and devices." +description: "This course has been retired." +description_orig: "Get up to speed with the Twitter Bootstrap’s grid layout system and learn how to build a responsive layout that looks great on multiple screen sizes and devices." instructor: josborn skills: - label: "Bootstrap basics" diff --git a/_data/courses/GYM-004.yml b/_data/courses/GYM-004.yml index c9fcb1734..c69e0e9fb 100644 --- a/_data/courses/GYM-004.yml +++ b/_data/courses/GYM-004.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/004/0/about poster_art: /img/course-artwork/png/gym-004.png topic: "Development" -short_description: "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design." +description: "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design." instructor: ghodgkinson skills: - label: "Intermediate HTML/CSS" diff --git a/_data/courses/GYM-005.yml b/_data/courses/GYM-005.yml index 06d101744..46c4a6a1b 100644 --- a/_data/courses/GYM-005.yml +++ b/_data/courses/GYM-005.yml @@ -11,8 +11,8 @@ poster_art: /img/course-artwork/png/gym-005.png topic: "UX" subtopics: - label: "Prototyping" -short_description: "This course has been retired." -short_description_orig: "Learn how to use Sketch tools and features in order to build an interactive prototype for a mobile website." +description: "This course has been retired." +description_orig: "Learn how to use Sketch tools and features in order to build an interactive prototype for a mobile website." instructor: josborn skills: - label: "Sketch fundamentals" diff --git a/_data/courses/GYM-006.yml b/_data/courses/GYM-006.yml index 684ac6b5a..c9faf4794 100644 --- a/_data/courses/GYM-006.yml +++ b/_data/courses/GYM-006.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/006/0/about poster_art: /img/course-artwork/png/gym-006.png topic: "Development" -short_description: "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either." +description: "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either." instructor: jausura skills: - label: "Version control" diff --git a/_data/courses/GYM-007.yml b/_data/courses/GYM-007.yml index 9cf8a3630..e7b560220 100644 --- a/_data/courses/GYM-007.yml +++ b/_data/courses/GYM-007.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/007/0/about poster_art: /img/course-artwork/png/gym-007.png topic: "Development" -short_description: "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes." +description: "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes." instructor: jkramer skills: - label: "Web Forms" diff --git a/_data/courses/GYM-008.yml b/_data/courses/GYM-008.yml index d52ea5705..651196064 100644 --- a/_data/courses/GYM-008.yml +++ b/_data/courses/GYM-008.yml @@ -11,8 +11,8 @@ poster_art: /img/course-artwork/png/gym-008.png topic: "UX" subtopics: - label: "Prototyping" -short_description: "This course has been retired." -short_description_orig: "Learn how to use the conditional logic features in Axure in order to quickly create an interactive prototype." +description: "This course has been retired." +description_orig: "Learn how to use the conditional logic features in Axure in order to quickly create an interactive prototype." instructor: tslate skills: - label: "Interactive prototyping" diff --git a/_data/courses/GYM-009.yml b/_data/courses/GYM-009.yml index 04b76adbd..fdc67580b 100644 --- a/_data/courses/GYM-009.yml +++ b/_data/courses/GYM-009.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/009/0/about poster_art: /img/course-artwork/png/gym-009.png topic: "Development" -short_description: "This course will teach you how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme." +description: "This course will teach you how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme." instructor: ghodgkinson skills: - label: "Intermediate HTML/CSS" diff --git a/_data/courses/GYM-011.yml b/_data/courses/GYM-011.yml index 81ecf3ca6..768c9fddf 100644 --- a/_data/courses/GYM-011.yml +++ b/_data/courses/GYM-011.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+011+0/about poster_art: /img/course-artwork/png/gym-011.png topic: "Development" -short_description: "In this course, you will get a familiarity with all aspects of the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications." +description: "In this course, you will get a familiarity with all aspects of the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications." instructor: kpeters skills: - label: "HTML & CSS Modification" diff --git a/_data/courses/GYM-012.yml b/_data/courses/GYM-012.yml index 2439bd7fa..17c3c76e7 100644 --- a/_data/courses/GYM-012.yml +++ b/_data/courses/GYM-012.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-012.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "In this course, you will learn how to build a simple web app using Node.js." +description: "In this course, you will learn how to build a simple web app using Node.js." instructor: tsellon skills: - label: "Installing Node.js" diff --git a/_data/courses/GYM-013.yml b/_data/courses/GYM-013.yml index bb2356f93..44510765d 100644 --- a/_data/courses/GYM-013.yml +++ b/_data/courses/GYM-013.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+013+0/about poster_art: /img/course-artwork/png/gym-013.png topic: "Design" -short_description: "Learn how to create 3D generated imagery in Maya for use in Virtual Reality production." +description: "Learn how to create 3D generated imagery in Maya for use in Virtual Reality production." instructor: groberts skills: - label: "Basic 3D Modeling, Animation and Rigging" diff --git a/_data/courses/GYM-014.yml b/_data/courses/GYM-014.yml index bbd9666a5..88deb1ee1 100644 --- a/_data/courses/GYM-014.yml +++ b/_data/courses/GYM-014.yml @@ -10,7 +10,7 @@ topic: "Development" subtopics: - label: "Design Systems" - label: "Pattern Library" -short_description: "Learn how to use Atomic Design methodology within Pattern Lab in order to create reusable user interface components." +description: "Learn how to use Atomic Design methodology within Pattern Lab in order to create reusable user interface components." instructor: bfrost skills: - label: "Website prototyping" diff --git a/_data/courses/GYM-015.yml b/_data/courses/GYM-015.yml index b10c32cb2..7c5e20d65 100644 --- a/_data/courses/GYM-015.yml +++ b/_data/courses/GYM-015.yml @@ -13,7 +13,7 @@ subtopics: - label: "Axure" - label: "Figma" - label: "Adobe XD" -short_description: "Learn how to use prototypes as a communication and collaboration device for building digital products and websites." +description: "Learn how to use prototypes as a communication and collaboration device for building digital products and websites." instructor: jbantjes skills: - label: "How to choose the right method of prototyping" diff --git a/_data/courses/GYM-016.yml b/_data/courses/GYM-016.yml index 8d216b497..4c5618474 100644 --- a/_data/courses/GYM-016.yml +++ b/_data/courses/GYM-016.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-016.png topic: "Development" subtopics: - label: "Accessibility" -short_description: "Learn accessible and responsive design best practices to help make a more user-friendly web for everyone." +description: "Learn accessible and responsive design best practices to help make a more user-friendly web for everyone." instructor: emarcotte skills: - label: "Accessibility" @@ -22,4 +22,4 @@ audience: lessons_duration: "1 hour" completion_duration: "Up to 2 hours" skill_level: "Intermediate" ---- \ No newline at end of file +--- diff --git a/_data/courses/GYM-017.yml b/_data/courses/GYM-017.yml index fb7b93dd7..38b9efc98 100644 --- a/_data/courses/GYM-017.yml +++ b/_data/courses/GYM-017.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-017.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how to effectively integrate pattern libraries and design systems into your organization’s workflow." +description: "Learn how to effectively integrate pattern libraries and design systems into your organization’s workflow." instructor: emarcotte skills: - label: "Design Thinking" diff --git a/_data/courses/GYM-018.yml b/_data/courses/GYM-018.yml index 3e72fa969..ad912b607 100644 --- a/_data/courses/GYM-018.yml +++ b/_data/courses/GYM-018.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-018.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how to incorporate pattern libraries and design systems into your workflow." +description: "Learn how to incorporate pattern libraries and design systems into your workflow." instructor: emarcotte skills: - label: "Working with pattern libraries" diff --git a/_data/courses/GYM-019.yml b/_data/courses/GYM-019.yml index 067b1a032..feeca4373 100644 --- a/_data/courses/GYM-019.yml +++ b/_data/courses/GYM-019.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-019.png topic: "Development" subtopics: - label: "Design Systems" -short_description: "Learn how to use your development skills to help build and support an effective and thriving design system." +description: "Learn how to use your development skills to help build and support an effective and thriving design system." instructor: emarcotte skills: - label: "Organizing and naming best practices" diff --git a/_data/courses/GYM-020.yml b/_data/courses/GYM-020.yml index 5c096caeb..5513d4388 100644 --- a/_data/courses/GYM-020.yml +++ b/_data/courses/GYM-020.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-020.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how pattern libraries and design systems can change and improve the work your teams do on a daily basis." +description: "Learn how pattern libraries and design systems can change and improve the work your teams do on a daily basis." instructor: emarcotte skills: - label: "Improving team collaboration" diff --git a/_data/courses/GYM-100.yml b/_data/courses/GYM-100.yml index 43e7e3e85..b3ac716e3 100644 --- a/_data/courses/GYM-100.yml +++ b/_data/courses/GYM-100.yml @@ -10,8 +10,8 @@ retired_message: url: /courses/GYM/100/0/about poster_art: /img/course-artwork/png/gym-100.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Learn HTML and CSS and become the Web Designer that Developers love. Professional design experience is a prerequisite, but no prior web or coding experience is necessary." +description: "This course has been retired." +description_orig: "Learn HTML and CSS and become the Web Designer that Developers love. Professional design experience is a prerequisite, but no prior web or coding experience is necessary." instructor: jwebb skills: - label: "HTML basics" diff --git a/_data/courses/GYM-101.yml b/_data/courses/GYM-101.yml index b8304dc10..e49756901 100644 --- a/_data/courses/GYM-101.yml +++ b/_data/courses/GYM-101.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/101/0/about poster_art: /img/course-artwork/png/gym-101.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "In this course, you’ll learn best practices for building responsive websites that adapt to different devices and user behaviors." +description: "This course has been retired." +description_orig: "In this course, you’ll learn best practices for building responsive websites that adapt to different devices and user behaviors." instructor: josborn skills: - label: "HTML5 and CSS3" diff --git a/_data/courses/GYM-102.yml b/_data/courses/GYM-102.yml index bf507063a..1d20656e1 100644 --- a/_data/courses/GYM-102.yml +++ b/_data/courses/GYM-102.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-102.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "This course will teach you 5 easy techniques for adding interactivity to your web pages. By the end of the course, you’ll be able to add features and style to your web pages, from simple animations to complex dynamic content." +description: "This course will teach you 5 easy techniques for adding interactivity to your web pages. By the end of the course, you’ll be able to add features and style to your web pages, from simple animations to complex dynamic content." instructor: dporter skills: - label: "Navigation, animation, and server interaction" diff --git a/_data/courses/GYM-103.yml b/_data/courses/GYM-103.yml index c4eff024f..d9234cdad 100644 --- a/_data/courses/GYM-103.yml +++ b/_data/courses/GYM-103.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/103/0/about poster_art: /img/course-artwork/png/gym-103.png topic: "UX" -short_description: "Learn how to apply user-centered design principles to improve your website and mobile app design. A must-take course for anyone working in design and development." +description: "Learn how to apply user-centered design principles to improve your website and mobile app design. A must-take course for anyone working in design and development." instructor: jwebb skills: - label: "User research" diff --git a/_data/courses/GYM-104.yml b/_data/courses/GYM-104.yml index 4d9f44319..e310a95ab 100644 --- a/_data/courses/GYM-104.yml +++ b/_data/courses/GYM-104.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-104.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "Learn the fundamentals of programming with JavaScript and get started on the road to its mastery." +description: "Learn the fundamentals of programming with JavaScript and get started on the road to its mastery." instructor: kpeters skills: - label: "JavaScript" diff --git a/_data/courses/GYM-105.yml b/_data/courses/GYM-105.yml index 65d61e1e6..df1715b40 100644 --- a/_data/courses/GYM-105.yml +++ b/_data/courses/GYM-105.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/105/0/about poster_art: /img/course-artwork/png/gym-105.png topic: "Career Skills" -short_description: "This course has been retired." -short_description_orig: "Learn how to write compelling content through meaningful audience research and find the right words to attract and engage users." +description: "This course has been retired." +description_orig: "Learn how to write compelling content through meaningful audience research and find the right words to attract and engage users." instructor: shay skills: - label: "Online writing strategies" diff --git a/_data/courses/GYM-106.yml b/_data/courses/GYM-106.yml index 6cff71fba..6ca99a8e9 100644 --- a/_data/courses/GYM-106.yml +++ b/_data/courses/GYM-106.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/106/0/about poster_art: /img/course-artwork/png/gym-106.png topic: "Design" -short_description: "Learn the design and visual principles needed to create effective information graphics and data visualizations." +description: "Learn the design and visual principles needed to create effective information graphics and data visualizations." instructor: groberts skills: - label: "Visual design principles" diff --git a/_data/courses/GYM-107.yml b/_data/courses/GYM-107.yml index c612d001a..22960a32e 100644 --- a/_data/courses/GYM-107.yml +++ b/_data/courses/GYM-107.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/107/0/about poster_art: /img/course-artwork/png/gym-107.png topic: "Development" -short_description: "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS, and JavaScript." +description: "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS, and JavaScript." instructor: agustafson skills: - label: "HTML Markup" diff --git a/_data/courses/GYM-108.yml b/_data/courses/GYM-108.yml index c8d4e12bd..90a800e8c 100644 --- a/_data/courses/GYM-108.yml +++ b/_data/courses/GYM-108.yml @@ -10,7 +10,7 @@ topic: "Development" subtopics: - label: "JavaScript" - label: "jQuery" -short_description: "This course will prepare you to tackle real-world projects that require the use of jQuery and JavaScript by walking you through a number of exercises and coding examples." +description: "This course will prepare you to tackle real-world projects that require the use of jQuery and JavaScript by walking you through a number of exercises and coding examples." instructor: kchisholm skills: - label: "Developer Tools" diff --git a/_data/courses/GYM-109.yml b/_data/courses/GYM-109.yml index 2c6faf2a9..d33f41306 100644 --- a/_data/courses/GYM-109.yml +++ b/_data/courses/GYM-109.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+109+0/about poster_art: /img/course-artwork/png/gym-109.png topic: "Development" -short_description: "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices." +description: "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices." instructor: jpamental skills: - label: "Strategic thinking about responsive process" diff --git a/_data/hero.yml b/_data/hero.yml index 1be9e0afe..0004cd77d 100644 --- a/_data/hero.yml +++ b/_data/hero.yml @@ -14,7 +14,7 @@ embed_source: "youtube" # Content # Update per live stream, if needed title: "Live Stream" -short_description: "Working within Spatial." +description: "Working within Spatial." byline: "The Gymnasium Team" # twitch diff --git a/_data/pages/courses.yml b/_data/pages/courses.yml index 8bd6815b6..78978cdd3 100644 --- a/_data/pages/courses.yml +++ b/_data/pages/courses.yml @@ -2,25 +2,25 @@ main: title: "Courses" tagline: "Free online courses and tutorials." - short_description: "Learn design, development, UX, accessibility, and career skills from industry experts." + description: "Learn design, development, UX, accessibility, and career skills from industry experts." full_courses: format: "Full Courses" - short_description: "Full Courses include a series of video lessons, optional quizzes and assignments, and a final exam and certificate if you pass. Plus, a forum to share work and get feedback from students and teaching assistants." + description: "Full Courses include a series of video lessons, optional quizzes and assignments, and a final exam and certificate if you pass. Plus, a forum to share work and get feedback from students and teaching assistants." hero_text: "Learn new skills in a day or less and earn a certificate." hero_CTA: "View All Full Courses" promo_label: "Featured" promo_ID: "GYM-107" gym_shorts: format: "Gym Shorts" - short_description: "Gym Shorts include a series of video lessons, a final exam, and a badge if you pass." + description: "Gym Shorts include a series of video lessons, a final exam, and a badge if you pass." hero_text: "Learn new skills in a few hours and earn a badge." hero_CTA: "View All Gym Shorts" promo_label: "Featured" promo_ID: "GYM-017" take5_tutorials: format: "Take 5" - short_description: "Take 5 tutorials are 5-minute video tutorials with easy-to-follow transcripts. No homework. No exam. Just free online learning." + description: "Take 5 tutorials are 5-minute video tutorials with easy-to-follow transcripts. No homework. No exam. Just free online learning." hero_text: "Learn new skills with 5-minute tutorials." hero_CTA: "View All Tutorials" promo_label: "Featured" diff --git a/_data/take5/GYM-5001.yml b/_data/take5/GYM-5001.yml index 756a8b6a1..9ee58e69f 100644 --- a/_data/take5/GYM-5001.yml +++ b/_data/take5/GYM-5001.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: zRNUPU2dujU video_duration: "4:59" featured: false -short_description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial." +description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5002.yml b/_data/take5/GYM-5002.yml index a74401640..b6f2e5c17 100644 --- a/_data/take5/GYM-5002.yml +++ b/_data/take5/GYM-5002.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: Q66-TDbHiIs video_duration: "4:48" featured: false -short_description: "Learn how to make an image appear inside the outline of plain text using CSS in this hands-on tutorial." +description: "Learn how to make an image appear inside the outline of plain text using CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5003.yml b/_data/take5/GYM-5003.yml index 446d448fe..1ba231321 100644 --- a/_data/take5/GYM-5003.yml +++ b/_data/take5/GYM-5003.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: SaO2hO-4yEY video_duration: "4:13" featured: false -short_description: "Learn how to add a gradient overlay to an image more efficiently using only CSS in this hands-on tutorial." +description: "Learn how to add a gradient overlay to an image more efficiently using only CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5004.yml b/_data/take5/GYM-5004.yml index 582daf5ff..2779013af 100644 --- a/_data/take5/GYM-5004.yml +++ b/_data/take5/GYM-5004.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: VaHkQQ5xgac video_duration: "4:34" featured: false -short_description: "Learn how to use new CSS features for modern browsers without worrying about browser incompatibilities in this hands-on tutorial." +description: "Learn how to use new CSS features for modern browsers without worrying about browser incompatibilities in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5005.yml b/_data/take5/GYM-5005.yml index ea621de77..053de73c4 100644 --- a/_data/take5/GYM-5005.yml +++ b/_data/take5/GYM-5005.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: _12cCrECCdY video_duration: "4:59" featured: false -short_description: "Learn how to turn a grayscale image into a duotone using CSS blend modes in this hands-on tutorial." +description: "Learn how to turn a grayscale image into a duotone using CSS blend modes in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5006.yml b/_data/take5/GYM-5006.yml index 98acdc2b0..3c9f6ecde 100644 --- a/_data/take5/GYM-5006.yml +++ b/_data/take5/GYM-5006.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: FfQ55Q15xUA video_duration: "4:47" featured: false -short_description: "Learn how to run a card sorting session in order to better understand your users’ mental models in this tutorial." +description: "Learn how to run a card sorting session in order to better understand your users’ mental models in this tutorial." related_content: - label: "The Pros and Cons of Card Sorting in UX Research" url: "https://www.interaction-design.org/literature/article/the-pros-and-cons-of-card-sorting-in-ux-research" diff --git a/_data/take5/GYM-5007.yml b/_data/take5/GYM-5007.yml index 5af4837b9..386431ceb 100644 --- a/_data/take5/GYM-5007.yml +++ b/_data/take5/GYM-5007.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: UDekSJsMOC8 video_duration: "4:05" featured: false -short_description: "Learn how to conduct a successful customer interview in this tutorial." +description: "Learn how to conduct a successful customer interview in this tutorial." related_content: - label: "Listening deeply. An article by Indi Young" url: "https://indiyoung.com/listening-deeply/" diff --git a/_data/take5/GYM-5008.yml b/_data/take5/GYM-5008.yml index 40928ee98..948b539d1 100644 --- a/_data/take5/GYM-5008.yml +++ b/_data/take5/GYM-5008.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: eE0rJNHvAzs video_duration: "3:48" featured: false -short_description: "Learn how to write survey questions to gather high-level information about your market in this tutorial." +description: "Learn how to write survey questions to gather high-level information about your market in this tutorial." related_content: - label: "The Essential Guide to Writing Effective Survey Questions an article by Jennifer Leigh Brown" url: "https://www.uxbooth.com/articles/the-essential-guide-to-writing-effective-survey-questions/" diff --git a/_data/take5/GYM-5009.yml b/_data/take5/GYM-5009.yml index 62ee1a5f1..ad57f5e31 100644 --- a/_data/take5/GYM-5009.yml +++ b/_data/take5/GYM-5009.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: I1uO3rwcG8U video_duration: "4:35" featured: false -short_description: "Learn how to lead a usability test in order to see how people interact with a product in this tutorial." +description: "Learn how to lead a usability test in order to see how people interact with a product in this tutorial." related_content: - label: "The Art of Guerrilla Usability Testing an article by David Peter Simon" url: "https://www.uxbooth.com/articles/the-art-of-guerrilla-usability-testing/" diff --git a/_data/take5/GYM-5010.yml b/_data/take5/GYM-5010.yml index d4aa3643a..29bb7dcb7 100644 --- a/_data/take5/GYM-5010.yml +++ b/_data/take5/GYM-5010.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: PwuPv7JwzCA video_duration: "4:50" featured: false -short_description: "Learn how to silently collaborate with a team in order to get group consensus in this tutorial." +description: "Learn how to silently collaborate with a team in order to get group consensus in this tutorial." related_content: - label: "18F Methods instructions on the KJ method" url: "https://methods.18f.gov/discover/kj-method/" diff --git a/_data/take5/GYM-5011.yml b/_data/take5/GYM-5011.yml index 621fffb2f..bca6fe7b2 100644 --- a/_data/take5/GYM-5011.yml +++ b/_data/take5/GYM-5011.yml @@ -14,7 +14,7 @@ subtopics: video_ID: VzdFLmK2t38 video_duration: "4:59" featured: false -short_description: "Learn how to use Smart Layout in Sketch in this hands-on tutorial." +description: "Learn how to use Smart Layout in Sketch in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5012.yml b/_data/take5/GYM-5012.yml index a0c985a7e..a3958748d 100644 --- a/_data/take5/GYM-5012.yml +++ b/_data/take5/GYM-5012.yml @@ -15,7 +15,7 @@ subtopics: video_ID: IqAizKPCC9U video_duration: "4:59" featured: false -short_description: "Learn the benefits of prototyping web page layouts using CSS Grid Layout in this hands-on tutorial." +description: "Learn the benefits of prototyping web page layouts using CSS Grid Layout in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5013.yml b/_data/take5/GYM-5013.yml index 96671df98..bed4d5f41 100644 --- a/_data/take5/GYM-5013.yml +++ b/_data/take5/GYM-5013.yml @@ -14,7 +14,7 @@ subtopics: video_ID: QxN2wVlBTTw video_duration: "4:51" featured: false -short_description: "Learn how to create animated micro-interactions using InVision Studio’s timeline feature in this hands-on tutorial." +description: "Learn how to create animated micro-interactions using InVision Studio’s timeline feature in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5014.yml b/_data/take5/GYM-5014.yml index 1490eee5f..fc1d78cae 100644 --- a/_data/take5/GYM-5014.yml +++ b/_data/take5/GYM-5014.yml @@ -14,7 +14,7 @@ subtopics: video_ID: TJqqgchPraE video_duration: "4:57" featured: false -short_description: "Learn how to use Auto-Animate in Adobe XD in this hands-on tutorial." +description: "Learn how to use Auto-Animate in Adobe XD in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5015.yml b/_data/take5/GYM-5015.yml index dd97f9c7a..57b9dccd8 100644 --- a/_data/take5/GYM-5015.yml +++ b/_data/take5/GYM-5015.yml @@ -14,7 +14,7 @@ subtopics: video_ID: fhAqswjylgg video_duration: "4:57" featured: false -short_description: "Learn how to use the Smart Animate feature to create advanced animations in Figma in this hands-on tutorial." +description: "Learn how to use the Smart Animate feature to create advanced animations in Figma in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5016.yml b/_data/take5/GYM-5016.yml index fe51078d4..2957ec715 100644 --- a/_data/take5/GYM-5016.yml +++ b/_data/take5/GYM-5016.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: 3WVDdGssP6Y video_duration: "4:35" featured: false -short_description: "Learn how to tell your story in a compelling way in order to advance your career in this tutorial." +description: "Learn how to tell your story in a compelling way in order to advance your career in this tutorial." related_content: - label: "The Psychological Power of Storytelling by Pamela B. Rutledge" url: "https://www.psychologytoday.com/us/blog/positively-media/201101/the-psychological-power-storytelling" diff --git a/_data/take5/GYM-5017.yml b/_data/take5/GYM-5017.yml index 63248864d..615efa762 100644 --- a/_data/take5/GYM-5017.yml +++ b/_data/take5/GYM-5017.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: ycCdyR-Oohs video_duration: "4:18" featured: false -short_description: "Learn how to have confidence in the stories you tell after making a career change in this tutorial." +description: "Learn how to have confidence in the stories you tell after making a career change in this tutorial." related_content: - label: "Story Map by James Buckhouse" url: "https://medium.com/design-story/story-map-3cc64033128e" diff --git a/_data/take5/GYM-5018.yml b/_data/take5/GYM-5018.yml index 5f7564542..62f810bee 100644 --- a/_data/take5/GYM-5018.yml +++ b/_data/take5/GYM-5018.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: iLI4I2XnjpU video_duration: "5:00" featured: false -short_description: "Learn how to create compelling stories for projects you’ve made in this tutorial." +description: "Learn how to create compelling stories for projects you’ve made in this tutorial." related_content: - label: "Finding, Crafting and Telling a Great Story - Nicole Kahn" url: "https://gsbmedia.stanford.edu/media/GuestA+Nicole+Kahn/0_jagtf4n5" diff --git a/_data/take5/GYM-5019.yml b/_data/take5/GYM-5019.yml index f11cb43b5..cb1a3bf1d 100644 --- a/_data/take5/GYM-5019.yml +++ b/_data/take5/GYM-5019.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: m1vO-v2UGmk video_duration: "4:13" featured: false -short_description: "Learn how to promote yourself via your website and social media in this tutorial." +description: "Learn how to promote yourself via your website and social media in this tutorial." related_content: - label: "Owltastic - Portfolio site by Meagan Fisher" url: "https://owltastic.com" diff --git a/_data/take5/GYM-5020.yml b/_data/take5/GYM-5020.yml index e9b5c6913..3b8788524 100644 --- a/_data/take5/GYM-5020.yml +++ b/_data/take5/GYM-5020.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: CWHSqE5Es4c video_duration: "4:59" featured: false -short_description: "Learn how to increase opportunities by understanding the types of audiences you can expect to encounter in this tutorial." +description: "Learn how to increase opportunities by understanding the types of audiences you can expect to encounter in this tutorial." related_content: - label: "How to Use Stories to Win Over Others by Jennifer Aker" url: "https://leanin.org/education/harnessing-the-power-of-stories" diff --git a/_data/take5/GYM-5021.yml b/_data/take5/GYM-5021.yml index 8b5fcf89c..301a6766e 100644 --- a/_data/take5/GYM-5021.yml +++ b/_data/take5/GYM-5021.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: qfDPi1nnHSk video_duration: "4:48" featured: false -short_description: "Learn how to add generated content to the links on a web page using CSS in this tutorial." +description: "Learn how to add generated content to the links on a web page using CSS in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5022.yml b/_data/take5/GYM-5022.yml index d6ee871df..49089ffd5 100644 --- a/_data/take5/GYM-5022.yml +++ b/_data/take5/GYM-5022.yml @@ -12,7 +12,7 @@ topic: "Design" video_ID: fOP3xEY77bc video_duration: "4:57" featured: false -short_description: "Learn how to create a pixel perfect icon in Sketch whose edges remain sharp in any scenario with this tutorial." +description: "Learn how to create a pixel perfect icon in Sketch whose edges remain sharp in any scenario with this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5023.yml b/_data/take5/GYM-5023.yml index 027ea92d1..0fa2e1303 100644 --- a/_data/take5/GYM-5023.yml +++ b/_data/take5/GYM-5023.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 1430bmqJ9xw video_duration: "4:57" featured: false -short_description: "Learn how to create a pleasing analogous color scheme using the HSL color system with this tutorial." +description: "Learn how to create a pleasing analogous color scheme using the HSL color system with this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5024.yml b/_data/take5/GYM-5024.yml index 129a3182a..f8edadfe9 100644 --- a/_data/take5/GYM-5024.yml +++ b/_data/take5/GYM-5024.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: Xb3pBj4PKxg video_duration: "4:59" featured: false -short_description: "Learn how to add CSS Media Queries in order to get started with responsive web design in this tutorial." +description: "Learn how to add CSS Media Queries in order to get started with responsive web design in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5025.yml b/_data/take5/GYM-5025.yml index bbb992acb..2b740919c 100644 --- a/_data/take5/GYM-5025.yml +++ b/_data/take5/GYM-5025.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: ZLR0rLm_zEM video_duration: "4:57" featured: false -short_description: "Learn how CSS Variables can help you speed up and simplify your development workflow in this tutorial." +description: "Learn how CSS Variables can help you speed up and simplify your development workflow in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5026.yml b/_data/take5/GYM-5026.yml index 86bd45d61..5ca96cbf3 100644 --- a/_data/take5/GYM-5026.yml +++ b/_data/take5/GYM-5026.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: ukPI1zlxKqg video_duration: "4:58" featured: false -short_description: "Learn how to get up and running with your first GitHub Pages Website in this tutorial." +description: "Learn how to get up and running with your first GitHub Pages Website in this tutorial." related_content: - label: "GitHub.com" url: "https://github.com" diff --git a/_data/take5/GYM-5027.yml b/_data/take5/GYM-5027.yml index 7d0537f42..a45ba2d1e 100644 --- a/_data/take5/GYM-5027.yml +++ b/_data/take5/GYM-5027.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: AcJPrHGIIL8 video_duration: "4:59" featured: false -short_description: "Learn 3 ways to manage your work day more efficiently in this tutorial." +description: "Learn 3 ways to manage your work day more efficiently in this tutorial." related_content: - label: "Create Email Templates in Gmail" url: "https://support.google.com/a/users/answer/9308990" diff --git a/_data/take5/GYM-5028.yml b/_data/take5/GYM-5028.yml index 3483e67f0..8223c6613 100644 --- a/_data/take5/GYM-5028.yml +++ b/_data/take5/GYM-5028.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: VYhPXZvAD9k video_duration: "4:57" featured: false -short_description: "Learn how to create a theme for your dark mode users in this tutorial." +description: "Learn how to create a theme for your dark mode users in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5029.yml b/_data/take5/GYM-5029.yml index 1e6290071..b03888fed 100644 --- a/_data/take5/GYM-5029.yml +++ b/_data/take5/GYM-5029.yml @@ -14,7 +14,7 @@ subtopics: video_ID: LnPEGhE90r4 video_duration: "4:57" featured: false -short_description: "Build and animate a prototype for a simple microinteraction in Figma in this tutorial." +description: "Build and animate a prototype for a simple microinteraction in Figma in this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5030.yml b/_data/take5/GYM-5030.yml index 76d68f3e1..72cd201c1 100644 --- a/_data/take5/GYM-5030.yml +++ b/_data/take5/GYM-5030.yml @@ -14,7 +14,7 @@ subtopics: video_ID: X-uDu6Wfdfc video_duration: "4:33" featured: false -short_description: "Learn how to effectively use overlays in Figma in this tutorial." +description: "Learn how to effectively use overlays in Figma in this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5031.yml b/_data/take5/GYM-5031.yml index b542eef10..22b4bcdd7 100644 --- a/_data/take5/GYM-5031.yml +++ b/_data/take5/GYM-5031.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: 0X4uxoKMwew video_duration: "4:59" featured: false -short_description: "Learn how to make an interactive column chart using Google Charts in this tutorial." +description: "Learn how to make an interactive column chart using Google Charts in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5032.yml b/_data/take5/GYM-5032.yml index 2bda8bcd9..697759dad 100644 --- a/_data/take5/GYM-5032.yml +++ b/_data/take5/GYM-5032.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: Y2vjyDxkIPs video_duration: "4:59" featured: false -short_description: "Learn how to get started with VoiceOver, Apple’s built-in screen reader, to read and navigate web pages in this tutorial." +description: "Learn how to get started with VoiceOver, Apple’s built-in screen reader, to read and navigate web pages in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5033.yml b/_data/take5/GYM-5033.yml index f3580f17c..7cf60c117 100644 --- a/_data/take5/GYM-5033.yml +++ b/_data/take5/GYM-5033.yml @@ -14,7 +14,7 @@ subtopics: video_ID: mmXdKhB7Ueg video_duration: "4:50" featured: false -short_description: "Learn how to design beautiful and accessible link focus states in this tutorial." +description: "Learn how to design beautiful and accessible link focus states in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5034.yml b/_data/take5/GYM-5034.yml index 167e6692a..e15a40018 100644 --- a/_data/take5/GYM-5034.yml +++ b/_data/take5/GYM-5034.yml @@ -14,7 +14,7 @@ subtopics: video_ID: fk-eu9TmFNk video_duration: "4:58" featured: false -short_description: "Learn how to set flexible and accessible type sizes for a more user-friendly web in this tutorial." +description: "Learn how to set flexible and accessible type sizes for a more user-friendly web in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5035.yml b/_data/take5/GYM-5035.yml index 1aa5f58ab..a6365abce 100644 --- a/_data/take5/GYM-5035.yml +++ b/_data/take5/GYM-5035.yml @@ -14,7 +14,7 @@ subtopics: video_ID: m1_iOLbtEFM video_duration: "4:59" featured: false -short_description: "Learn how to responsively spice up your designs with viewport units in this tutorial." +description: "Learn how to responsively spice up your designs with viewport units in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5036.yml b/_data/take5/GYM-5036.yml index f6654d1ea..4becb1781 100644 --- a/_data/take5/GYM-5036.yml +++ b/_data/take5/GYM-5036.yml @@ -14,7 +14,7 @@ subtopics: video_ID: nt7p3CuxUzA video_duration: "4:55" featured: false -short_description: "Learn how to create visually compelling and accessible drop caps on the web in this tutorial." +description: "Learn how to create visually compelling and accessible drop caps on the web in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5037.yml b/_data/take5/GYM-5037.yml index 918c545ad..39b29c596 100644 --- a/_data/take5/GYM-5037.yml +++ b/_data/take5/GYM-5037.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: qfdOIriWM90 video_duration: "3:52" featured: false -short_description: "Learn how to leverage the inherent accessibility of HTML documents in this tutorial." +description: "Learn how to leverage the inherent accessibility of HTML documents in this tutorial." related_content: - label: "HTML: A good basis for accessibility" url: "https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML" diff --git a/_data/take5/GYM-5038.yml b/_data/take5/GYM-5038.yml index 3a961bcbc..eeeba54cc 100644 --- a/_data/take5/GYM-5038.yml +++ b/_data/take5/GYM-5038.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: 9ylBqOnEXos video_duration: "4:39" featured: false -short_description: "Learn how to make the headings and lists in your HTML documents more accessible for everyone in this tutorial." +description: "Learn how to make the headings and lists in your HTML documents more accessible for everyone in this tutorial." related_content: - label: "Accessibility Tutorials: Headings" url: "https://www.w3.org/WAI/tutorials/page-structure/headings/" diff --git a/_data/take5/GYM-5039.yml b/_data/take5/GYM-5039.yml index 535fdcc42..e02cf11a9 100644 --- a/_data/take5/GYM-5039.yml +++ b/_data/take5/GYM-5039.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: npto50RJpDc video_duration: "4:28" featured: false -short_description: "Learn how to make the data tables in your HTML documents more accessible for everyone in this tutorial." +description: "Learn how to make the data tables in your HTML documents more accessible for everyone in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5040.yml b/_data/take5/GYM-5040.yml index 5787436c2..29ba4a664 100644 --- a/_data/take5/GYM-5040.yml +++ b/_data/take5/GYM-5040.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: CizNbSuRRew video_duration: "4:20" featured: false -short_description: "Learn best practices for using alt text to improve the accessibility of the images on your website in this tutorial." +description: "Learn best practices for using alt text to improve the accessibility of the images on your website in this tutorial." related_content: - label: "When Not to use alt attributes" url: "https://www.sitepoint.com/the-hidden-nuggets-of-wcag2-when-not-to-use-alt-attributes/" diff --git a/_data/take5/GYM-5041.yml b/_data/take5/GYM-5041.yml index d603fb325..537ff9149 100644 --- a/_data/take5/GYM-5041.yml +++ b/_data/take5/GYM-5041.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: iyzPK-Mz_CY video_duration: "4:13" featured: false -short_description: "Learn how to write alt text for more complex image use, such as charts, graphs, and image links in this tutorial." +description: "Learn how to write alt text for more complex image use, such as charts, graphs, and image links in this tutorial." related_content: - label: "Complex Images Tutorial" url: "https://www.w3.org/WAI/tutorials/images/complex/" diff --git a/_data/take5/GYM-5042.yml b/_data/take5/GYM-5042.yml index dc3da0f8a..0679f7b06 100644 --- a/_data/take5/GYM-5042.yml +++ b/_data/take5/GYM-5042.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: z1z-kfVtFpk video_duration: "4:40" featured: false -short_description: "Take the guesswork out of designing for color blindness and learn how to improve the accessibility of your websites in this tutorial." +description: "Take the guesswork out of designing for color blindness and learn how to improve the accessibility of your websites in this tutorial." related_content: - label: "Coblis - Color Blindness Simulator" url: "https://www.color-blindness.com/coblis-color-blindness-simulator/" diff --git a/_data/take5/GYM-5043.yml b/_data/take5/GYM-5043.yml index b351a83c0..59a29157c 100644 --- a/_data/take5/GYM-5043.yml +++ b/_data/take5/GYM-5043.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: 7Q1bVzu0KxE video_duration: "3:36" featured: false -short_description: "Discover how to identify whether the colors on your website have sufficient contrast between text color and its background in this tutorial." +description: "Discover how to identify whether the colors on your website have sufficient contrast between text color and its background in this tutorial." related_content: - label: "WebAIM: Contrast Checker" url: "https://webaim.org/resources/contrastchecker/" diff --git a/_data/take5/GYM-5044.yml b/_data/take5/GYM-5044.yml index 98f771427..8699faa0e 100644 --- a/_data/take5/GYM-5044.yml +++ b/_data/take5/GYM-5044.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 72nrJJAf_Ak video_duration: "4:43" featured: false -short_description: "Learn how to make sure everyone can complete the forms on your website and learn how to properly use the label element in this tutorial." +description: "Learn how to make sure everyone can complete the forms on your website and learn how to properly use the label element in this tutorial." related_content: - label: "Labeling Controls" url: "https://www.w3.org/WAI/tutorials/forms/labels/" diff --git a/_data/take5/GYM-5045.yml b/_data/take5/GYM-5045.yml index a191b480c..76b98fe26 100644 --- a/_data/take5/GYM-5045.yml +++ b/_data/take5/GYM-5045.yml @@ -15,7 +15,7 @@ subtopics: video_ID: m3M7QbDE3Lg video_duration: "4:33" featured: false -short_description: "Forms are a frequent source of accessibility problems on websites. Learn some tips and tricks on how to make your web forms easier to use and understand in this tutorial." +description: "Forms are a frequent source of accessibility problems on websites. Learn some tips and tricks on how to make your web forms easier to use and understand in this tutorial." related_content: - label: "Validating Input" url: "https://www.w3.org/WAI/tutorials/forms/validation/" diff --git a/_data/take5/GYM-5046.yml b/_data/take5/GYM-5046.yml index 997b2f052..7c2bf8363 100644 --- a/_data/take5/GYM-5046.yml +++ b/_data/take5/GYM-5046.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: mCIFslxi1yU video_duration: "4:44" featured: false -short_description: "With more video and audio being published online than ever before, it’s critical to make this content as accessible as possible. Learn strategies for improving multimedia accessibility on your websites in this tutorial." +description: "With more video and audio being published online than ever before, it’s critical to make this content as accessible as possible. Learn strategies for improving multimedia accessibility on your websites in this tutorial." related_content: - label: "Audio Description for the Blind (Video)" url: "https://accessibility.psu.edu/video/audiodescription/" diff --git a/_data/take5/GYM-5047.yml b/_data/take5/GYM-5047.yml index d428e3195..69edea0eb 100644 --- a/_data/take5/GYM-5047.yml +++ b/_data/take5/GYM-5047.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: TpvlucvoUPw video_duration: "4:38" featured: false -short_description: "A few of the most common animation techniques used on the web can make users affected by motion dizzy or even sick. Learn how to avoid these techniques in this tutorial." +description: "A few of the most common animation techniques used on the web can make users affected by motion dizzy or even sick. Learn how to avoid these techniques in this tutorial." related_content: - label: "Designing Safer Web Animation For Motion Sensitivity" url: "https://alistapart.com/article/designing-safer-web-animation-for-motion-sensitivity/" diff --git a/_data/take5/GYM-5048.yml b/_data/take5/GYM-5048.yml index 27a3746ac..9cb994a59 100644 --- a/_data/take5/GYM-5048.yml +++ b/_data/take5/GYM-5048.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: Njn6CQwiafQ video_duration: "3:41" featured: false -short_description: "You don’t have to forgo animation entirely to accommodate users with disabilities. Learn how to ensure that animated elements won’t compromise the accessibility of your website in this tutorial." +description: "You don’t have to forgo animation entirely to accommodate users with disabilities. Learn how to ensure that animated elements won’t compromise the accessibility of your website in this tutorial." related_content: - label: "An Introduction to the Reduced Motion Media Query" url: "https://css-tricks.com/introduction-reduced-motion-media-query/" diff --git a/_data/take5/GYM-5049.yml b/_data/take5/GYM-5049.yml index fb07239cb..a1f3631db 100644 --- a/_data/take5/GYM-5049.yml +++ b/_data/take5/GYM-5049.yml @@ -14,7 +14,7 @@ subtopics: video_ID: ohEtP5MuWFk video_duration: "4:59" featured: false -short_description: "Variants make working with components in Figma easier and more intuitive to use. Learn how to get up and running with the fundamentals of variants in this tutorial." +description: "Variants make working with components in Figma easier and more intuitive to use. Learn how to get up and running with the fundamentals of variants in this tutorial." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5050.yml b/_data/take5/GYM-5050.yml index 819379637..45446bf4c 100644 --- a/_data/take5/GYM-5050.yml +++ b/_data/take5/GYM-5050.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 5wvVjAZgf0Y video_duration: "4:59" featured: false -short_description: "Learn the fundamentals of Auto Layout in Figma to design responsive interfaces, components, and even entire layouts." +description: "Learn the fundamentals of Auto Layout in Figma to design responsive interfaces, components, and even entire layouts." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5051.yml b/_data/take5/GYM-5051.yml index beb380342..28613e65f 100644 --- a/_data/take5/GYM-5051.yml +++ b/_data/take5/GYM-5051.yml @@ -14,7 +14,7 @@ subtopics: video_ID: UYsT7xAhQZM video_duration: "4:55" featured: false -short_description: "Learn advanced Auto Layout techniques in Figma such as alignment, distribution, resizing, and nesting to create complex interfaces." +description: "Learn advanced Auto Layout techniques in Figma such as alignment, distribution, resizing, and nesting to create complex interfaces." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5052.yml b/_data/take5/GYM-5052.yml index 28d4c79d2..3179d1c46 100644 --- a/_data/take5/GYM-5052.yml +++ b/_data/take5/GYM-5052.yml @@ -14,7 +14,7 @@ subtopics: video_ID: Q2dafEXRx_s video_duration: "4:35" featured: false -short_description: "In this tutorial, you’ll learn three ways to make a great first impression with your online portfolio and improve your chances of getting hired." +description: "In this tutorial, you’ll learn three ways to make a great first impression with your online portfolio and improve your chances of getting hired." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5053.yml b/_data/take5/GYM-5053.yml index f4d541628..f016200ac 100644 --- a/_data/take5/GYM-5053.yml +++ b/_data/take5/GYM-5053.yml @@ -14,7 +14,7 @@ subtopics: video_ID: DgungAdVLPA video_duration: "4:52" featured: false -short_description: "In this tutorial, you’ll learn three ways to create a compelling and unique About page for your online portfolio." +description: "In this tutorial, you’ll learn three ways to create a compelling and unique About page for your online portfolio." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index 1101c7638..e041ffa44 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -14,7 +14,7 @@ subtopics: video_ID: er1hK-a7pQA video_duration: "4:52" featured: true -short_description: "In this tutorial, you’ll learn three tips on how to write compelling case studies for your online portfolio." +description: "In this tutorial, you’ll learn three tips on how to write compelling case studies for your online portfolio." project_file_source: project_files: related_content: diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index 9a62d2e15..ce8b903e6 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -2,7 +2,7 @@ event_ID: web0001-designing-for-understanding event_title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" -short_description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." +description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." permalink: /webinars/designing-for-understanding event_date: 2016-04-27 event_time: "2PM EDT" diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index 71f37a586..b0dbfa899 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -2,7 +2,7 @@ event_ID: web0002-designing-for-real-people event_title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" -short_description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." +description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." permalink: /webinars/designing-for-real-people event_date: 2016-06-01 event_time: "2PM EDT" diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index 88838e8d2..ca9f31be5 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -2,7 +2,7 @@ event_ID: web0003-right-sizing-your-rapid-prototypes event_title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" -short_description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." +description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." permalink: /webinars/right-sizing-your-rapid-prototypes event_date: 2016-08-17 event_time: "2PM EDT" diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index db3e0358a..cafa5c56d 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -2,7 +2,7 @@ event_ID: web0004-web-design-is-hard event_title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" -short_description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." +description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." permalink: /webinars/web-design-is-hard event_date: 2016-09-21 event_time: "2PM EDT" diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index 0a6843208..d9669b509 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -2,7 +2,7 @@ event_ID: web0005-state-of-responsive-web-design event_title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" -short_description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." +description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." permalink: /webinars/state-of-responsive-web-design event_date: 2016-12-08 event_time: "2PM EDT" diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index 55d2452cf..9b4f673f6 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -2,7 +2,7 @@ event_ID: web0006-keeping-up-with-javascript event_title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" -short_description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." +description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." permalink: /webinars/keeping-up-with-javascript event_date: 2017-03-22 event_time: "2PM EDT" diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 5ea816902..4e338f350 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -2,7 +2,7 @@ event_ID: web0007-design-systems-and-creativity event_title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" -short_description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." +description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." permalink: /webinars/design-systems-and-creativity event_date: 2017-07-17 event_time: "2PM EDT" diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index b0b86f3f0..a3dd21794 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -2,7 +2,7 @@ event_ID: web0008-rethinking-full-stack event_title: "Rethinking Full Stack:
Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" -short_description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." +description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." permalink: /webinars/rethinking-full-stack event_date: 2017-11-09 event_time: "2PM EST" diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index bdb3888b3..490a5e1ec 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -2,7 +2,7 @@ event_ID: web0009-future-of-web-layout event_title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" -short_description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." +description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." permalink: /webinars/future-of-web-layout date: 2018-02-05 event_date: 2018-03-13 diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index 35d6c889b..46cce1784 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -2,7 +2,7 @@ event_ID: web0010-planning-before-pixels event_title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" -short_description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." +description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." permalink: /webinars/planning-before-pixels date: 2018-11-20 event_date: 2018-12-11 diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 9a0bec663..5da0201b1 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -2,7 +2,7 @@ event_ID: web0011-prototyping-as-process event_title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" -short_description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." +description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." permalink: /webinars/prototyping-as-process event_date: 2019-05-14 event_time: "2:00 PM EDT" diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index 7d8793dec..c5b079a91 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -2,7 +2,7 @@ event_ID: web0012-remote-work event_title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" -short_description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." +description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." permalink: /webinars/remote-work event_date: 2020-03-17 event_time: "3:00 PM EDT" diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index f8149d235..62c216486 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -2,7 +2,7 @@ event_ID: web0013-decade-of-responsive-web-design event_title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" -short_description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." +description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." permalink: /webinars/decade-of-responsive-web-design event_date: 2020-05-26 event_time: "2:00 PM EDT" diff --git a/_data/workshops/GYM-700.yml b/_data/workshops/GYM-700.yml index 8b6c04b8a..983111c84 100644 --- a/_data/workshops/GYM-700.yml +++ b/_data/workshops/GYM-700.yml @@ -8,7 +8,7 @@ url: /courses/GYM/700/0/about poster_art: /img/course-artwork/png/gym-700.png live: false topic: "Career Skills" -short_description: "This workshop will teach students how to create an outstanding portfolio using content strategy and storytelling skills. Students will leave with actionable next steps to improve their portfolio." +description: "This workshop will teach students how to create an outstanding portfolio using content strategy and storytelling skills. Students will leave with actionable next steps to improve their portfolio." long_description: - label: "Students will learn how to effectively showcase their work through collaborative exercises and assignments — including coaching from expert instructors and feedback from fellow students." - label: "Pro Tip: You don’t need to wait until you’re looking for a new job to fine-tune your portfolio." diff --git a/_data/workshops/homepage.yml b/_data/workshops/homepage.yml index a27ddefba..55ae15c94 100644 --- a/_data/workshops/homepage.yml +++ b/_data/workshops/homepage.yml @@ -2,5 +2,5 @@ main: title: "Workshops" tagline: "Intensive learning in small sessions." - short_description: "Practical in-person, remote, and virtual workshops." + description: "Practical in-person, remote, and virtual workshops." --- diff --git a/_includes/courses/featured/full-courses.html b/_includes/courses/featured/full-courses.html index bbd700e86..a1aedc810 100644 --- a/_includes/courses/featured/full-courses.html +++ b/_includes/courses/featured/full-courses.html @@ -24,7 +24,7 @@

-

{{ courses[featured.full_courses.promo_1.ID].short_description }}

+

{{ courses[featured.full_courses.promo_1.ID].description }}

{{ featured.full_courses.promo_1.CTA }} @@ -58,7 +58,7 @@

-

{{ courses[featured.full_courses.promo_2.ID].short_description }}

+

{{ courses[featured.full_courses.promo_2.ID].description }}

{{ featured.full_courses.promo_2.CTA }} @@ -92,7 +92,7 @@

-

{{ courses[featured.full_courses.promo_3.ID].short_description }}

+

{{ courses[featured.full_courses.promo_3.ID].description }}

{{ featured.full_courses.promo_3.CTA }} diff --git a/_includes/courses/featured/gym-shorts.html b/_includes/courses/featured/gym-shorts.html index ceaa34528..c8b1c84b1 100644 --- a/_includes/courses/featured/gym-shorts.html +++ b/_includes/courses/featured/gym-shorts.html @@ -24,7 +24,7 @@

-

{{ courses[featured.gym_shorts.promo_1.ID].short_description }}

+

{{ courses[featured.gym_shorts.promo_1.ID].description }}

{{ featured.gym_shorts.promo_1.CTA }} @@ -58,7 +58,7 @@

-

{{ courses[featured.gym_shorts.promo_2.ID].short_description }}

+

{{ courses[featured.gym_shorts.promo_2.ID].description }}

{{ featured.gym_shorts.promo_2.CTA }} @@ -92,7 +92,7 @@

-

{{ courses[featured.gym_shorts.promo_3.ID].short_description }}

+

{{ courses[featured.gym_shorts.promo_3.ID].description }}

diff --git a/_includes/home/featured-courses.html b/_includes/home/featured-courses.html index c1c86b8f8..b8f0a63b4 100644 --- a/_includes/home/featured-courses.html +++ b/_includes/home/featured-courses.html @@ -20,7 +20,7 @@ {%- assign topic = site.data.courses[featured].topic -%} {%- assign url = site.data.courses[featured].url -%} {%- assign title = site.data.courses[featured].title -%} - {%- assign description = site.data.courses[featured].short_description -%} + {%- assign description = site.data.courses[featured].description -%} {%- if site.data.courses[featured].topic == "Design" -%} {%- assign content_class = "design" -%} diff --git a/_includes/partials/meta/logic-courses.html b/_includes/partials/meta/logic-courses.html index 523e9cf73..8c9daacd0 100644 --- a/_includes/partials/meta/logic-courses.html +++ b/_includes/partials/meta/logic-courses.html @@ -2,7 +2,7 @@ Set up meta tags for full and short courses {%- endcomment -%} {%- assign course = site.data.courses[id] -%} -{%- assign og_description = course.short_description -%} +{%- assign og_description = course.description -%} {%- assign og_url = course.url -%} {%- assign og_title = course.title -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} diff --git a/_includes/partials/meta/logic-take5.html b/_includes/partials/meta/logic-take5.html index 793f87867..6da6bc6bc 100644 --- a/_includes/partials/meta/logic-take5.html +++ b/_includes/partials/meta/logic-take5.html @@ -2,7 +2,7 @@ Set up meta tags for a Take 5 meta include {%- endcomment -%} {%- assign course = site.data.take5[id] -%} -{%- assign og_description = course.short_description -%} +{%- assign og_description = course.description -%} {%- assign og_title = course.title -%} {%- assign og_url = course.title | slugify | prepend: "/courses/take5/" -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} diff --git a/_includes/partials/meta/logic-webinars.html b/_includes/partials/meta/logic-webinars.html index 885de92b4..99e00472b 100644 --- a/_includes/partials/meta/logic-webinars.html +++ b/_includes/partials/meta/logic-webinars.html @@ -2,7 +2,7 @@ Set up meta tags for a webinar meta include {%- endcomment -%} {%- assign event = site.data.webinars[id] -%} -{%- assign og_description = event.short_description | strip_html -%} +{%- assign og_description = event.description | strip_html -%} {%- if event.event_ID == "web0005-state-of-responsive-web-design" -%} {%- assign og_url = "https://thegymnasium.com/webinars/state-of-responsive-web-design" -%} {%- assign og_title = event.event_title -%} diff --git a/_includes/take5/catalog-topic-group.html b/_includes/take5/catalog-topic-group.html index 3808811bf..caf3819d4 100644 --- a/_includes/take5/catalog-topic-group.html +++ b/_includes/take5/catalog-topic-group.html @@ -29,7 +29,7 @@

{{ item.title }}

-

{{ item.short_description }}

+

{{ item.description }}

@@ -25,7 +25,7 @@

{{ workshop.title }}

{{ workshop.datetime }}

-

{{ workshop.short_description}}

+

{{ workshop.description}}

{%- for description in workshop.long_description -%}

{{ description.label }}

@@ -87,4 +87,4 @@

{{ josborn.name}}

- \ No newline at end of file + diff --git a/_layouts/take5-raw.html b/_layouts/take5-raw.html index 915e5371b..db6f17da6 100644 --- a/_layouts/take5-raw.html +++ b/_layouts/take5-raw.html @@ -41,7 +41,7 @@

{{ course.title }}

with {{ course.instructor }}, {{ course.instructor_bio }}

{% endif %} -

{{ course.short_description }}

+

{{ course.description }}

{% include take5/video.html video_ID=course.video_ID %} diff --git a/_layouts/webinar.html b/_layouts/webinar.html index 50787359a..884ab7281 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -9,7 +9,7 @@ event_title: {{ webinar.event_title | strip_html }} event_guests: {{ webinar.event_guests | strip_html }} page_title: {{ webinar.page_title | strip_html }} -short_description: {{ webinar.short_description | strip_html }} +description: {{ webinar.description | strip_html }} event_date: {{ webinar.event_date }} event_time: {{ webinar.event_time }} event_ogimage: {{ webinar.event_ogimage }} @@ -65,7 +65,7 @@

{{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% endif %} -

{{ webinar.short_description }}

+

{{ webinar.description }}

{% if webinar.register %} {% include webinar-registration-form.html %} diff --git a/courses/full/course-list-recent.html b/courses/full/course-list-recent.html index 48f1d8599..8c732d8f4 100644 --- a/courses/full/course-list-recent.html +++ b/courses/full/course-list-recent.html @@ -60,7 +60,7 @@

{{ course.topic }}

{{ course.title }}

- {{ course.short_description }} + {{ course.description }}

diff --git a/courses/full/index.html b/courses/full/index.html index 6c9c7a75e..24e848d56 100644 --- a/courses/full/index.html +++ b/courses/full/index.html @@ -20,7 +20,7 @@

{{ main.full_courses.format }}

Free online full courses. Earn a certificate in a day or less. - {{ main.short_description }} + {{ main.description }}

diff --git a/courses/gym-shorts/course-list-recent.html b/courses/gym-shorts/course-list-recent.html index e140a8790..45c5eb3db 100644 --- a/courses/gym-shorts/course-list-recent.html +++ b/courses/gym-shorts/course-list-recent.html @@ -60,7 +60,7 @@

{{ course.topic }}

{{ course.title }}

- {{ course.short_description }} + {{ course.description }}

diff --git a/courses/gym-shorts/index.html b/courses/gym-shorts/index.html index bc7f0f43f..32a4e68f1 100644 --- a/courses/gym-shorts/index.html +++ b/courses/gym-shorts/index.html @@ -20,7 +20,7 @@

{{ main.gym_shorts.format }}

Free online short courses. Earn a badge in a few hours. - {{ main.short_description }} + {{ main.description }}

diff --git a/courses/index.html b/courses/index.html index da978de56..5d20cb5bf 100644 --- a/courses/index.html +++ b/courses/index.html @@ -21,7 +21,7 @@

{{ main.main.title }}

{{ main.main.tagline }} - {{ main.main.short_description }} + {{ main.main.description }}

@@ -61,7 +61,7 @@

- {{ courses[main.full_courses.promo_ID].short_description }} + {{ courses[main.full_courses.promo_ID].description }}

Learn More @@ -125,7 +125,7 @@

- {{ courses[main.gym_shorts.promo_ID].short_description }} + {{ courses[main.gym_shorts.promo_ID].description }}

Learn More @@ -189,7 +189,7 @@

- {{ take5[main.take5_tutorials.promo_ID].short_description }} + {{ take5[main.take5_tutorials.promo_ID].description }}

Learn More @@ -250,7 +250,7 @@

- {{ courses[main.gym_shorts.promo_ID].short_description }} + {{ courses[main.gym_shorts.promo_ID].description }}

Learn More diff --git a/courses/take5/course-list-recent.html b/courses/take5/course-list-recent.html index 2afd4819f..09579f3be 100644 --- a/courses/take5/course-list-recent.html +++ b/courses/take5/course-list-recent.html @@ -56,7 +56,7 @@

{{ course.topic }}

{{ course.title }}

- {{ course.short_description }} + {{ course.description }}

diff --git a/courses/take5/index.html b/courses/take5/index.html index 47ce9a3c6..daf36e280 100644 --- a/courses/take5/index.html +++ b/courses/take5/index.html @@ -16,7 +16,7 @@

{{ main.take5_tutorials.format }}

-

Free online video tutorials. Practical skills in 5 minutes. {{ main.short_description }}

+

Free online video tutorials. Practical skills in 5 minutes. {{ main.description }}

{{ about.lists[1] }}
@@ -72,7 +72,7 @@

{{ main.take5_tutorials.format }}

{%- if site.data.take5[item].featured == true -%} {%- assign featured = site.data.take5[item].course_ID -%} {%- assign featured_title = site.data.take5[item].title -%} - {%- assign featured_description = site.data.take5[item].short_description -%} + {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} {%- assign featured_instructor = site.data.take5[item].instructor -%} {%- assign featured_instructor_bio = site.data.take5[item].instructor_bio -%} diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index 86276fd28..c86899521 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -60,7 +60,7 @@

{{ course.topic }}

{{ course.title }}

- {{ course.short_description }} + {{ course.description }}

diff --git a/docs/README.md b/docs/README.md index 77101c924..598b480ad 100644 --- a/docs/README.md +++ b/docs/README.md @@ -34,7 +34,7 @@ topic: "Design & Development" # MUST be quoted video_ID: zRNUPU2dujU # YouTube video ID video_duration: "4:59" # Must be quoted featured: true # Toggle for display in catalog and hero -short_description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." +description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." project_file_source: Codepen # Required if there are project files project_files: - label: "Starting Project" @@ -69,7 +69,7 @@ topic: video_ID: video_duration: "0:00" featured: false -short_description: +description: project_file_source: project_files: - label: diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html index d0a1984de..4426dc4d9 100644 --- a/feeds/_partials/courses.html +++ b/feeds/_partials/courses.html @@ -1,7 +1,7 @@ {%- assign list = site.data.courses | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'course_ID', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html index 747964dfa..df6fa3e88 100644 --- a/feeds/_partials/tutorials.html +++ b/feeds/_partials/tutorials.html @@ -1,7 +1,7 @@ {%- assign list = site.data.take5 | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'course_ID', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html index bfb08d3d5..007fe12e6 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.html @@ -1,7 +1,7 @@ {%- assign list = site.data.webinars | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'event_title', 'title' -%} diff --git a/feeds/featured-courses.html b/feeds/featured-courses.html index 92e76bd06..f9ba3bd96 100644 --- a/feeds/featured-courses.html +++ b/feeds/featured-courses.html @@ -44,7 +44,7 @@ {"title": "{{ site.data.courses[featured].title }}", "url": "{{ site.data.courses[featured].url | prepend: "https://thegymnasium.com" }}", - "description": "{{ site.data.courses[featured].short_description }}", + "description": "{{ site.data.courses[featured].description }}", "instructor_name": "{{ instructor_name }}", "instructor_title": "{{ instructor_title }}", "artwork": ["{{ artwork_svg | prepend: artwork_path_svg diff --git a/feeds/webinars.json b/feeds/webinars.json index baa4e99a3..2abd26658 100644 --- a/feeds/webinars.json +++ b/feeds/webinars.json @@ -26,7 +26,7 @@ permalink: /feeds/webinars.json {%- assign data = site.data.webinars[webinar] -%} {%- assign title = data.event_title | strip_html -%} - {%- assign description = data.short_description | strip_html -%} + {%- assign description = data.description | strip_html -%} {%- assign decolonized_webinar_title = title | split: ":" -%} {%- assign webinar_title = decolonized_webinar_title[0] -%} {%- assign webinar_subtitle = decolonized_webinar_title[1] -%} @@ -40,7 +40,7 @@ permalink: /feeds/webinars.json "slug": "{{ data.permalink | replace: '/webinars/', '' }}", "category": "{{ data.content_category }}", "date": "{{ data.event_date }}", - "description": "{{ data.short_description | strip_html }}", + "description": "{{ data.description | strip_html }}", "host": "{{ data.host }}", "event_ogimage": "/img/social/webinars/{{ data.event_ogimage }}", "recording_ogimage": "/img/social/webinars/{{ data.recording_ogimage }}", diff --git a/hub-pages/collections/collections.html b/hub-pages/collections/collections.html index ac5524147..84a457211 100644 --- a/hub-pages/collections/collections.html +++ b/hub-pages/collections/collections.html @@ -28,7 +28,7 @@

{{ main.collections.format | prepend: 'Content ' }}

{{ hub_page.title }}

-

{{ hub_page.short_description }}

+

{{ hub_page.description }}

diff --git a/take5/catalog-blitz.html b/take5/catalog-blitz.html index 05e1abe93..41f40cfb6 100644 --- a/take5/catalog-blitz.html +++ b/take5/catalog-blitz.html @@ -56,7 +56,7 @@

Take 5

{%- if site.data.take5[item].featured == true -%} {%- assign featured = site.data.take5[item].course_ID -%} {%- assign featured_title = site.data.take5[item].title -%} - {%- assign featured_description = site.data.take5[item].short_description -%} + {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} {%- assign featured_instructor = site.data.take5[item].instructor -%} {%- assign featured_topic = site.data.take5[item].topic -%} diff --git a/take5/catalog-debug.html b/take5/catalog-debug.html index b7ff171c4..21168565c 100644 --- a/take5/catalog-debug.html +++ b/take5/catalog-debug.html @@ -30,7 +30,7 @@

{{ item.title }}

  • Video Duration: {{ item.video_duration }}
  • Instructor: {{ item.instructor }}
  • Topic: {{ item.topic }}
  • -
  • Short Description: {{ item.short_description | strip_html }}
  • +
  • Description: {{ item.description | strip_html }}
  • diff --git a/tests/bios.html b/tests/bios.html index d8bf165b3..2d52b14ee 100644 --- a/tests/bios.html +++ b/tests/bios.html @@ -12,7 +12,7 @@ Name Headshot - Short Description + Description Length {% for people in instructors %} diff --git a/tests/catalog/full-lister.html b/tests/catalog/full-lister.html index aeeeb120d..4a88d9db0 100644 --- a/tests/catalog/full-lister.html +++ b/tests/catalog/full-lister.html @@ -18,7 +18,7 @@

    {{ item.title }}

    Production URL: {{ item.course_ID }}
    Course Artwork PNG: {{ png_path | prepend: site.url }}
    Course Artwork SVG: {{ svg_path | prepend: site.url }}
    -
    Short Description: {{ item.short_description }}
    +
    Description: {{ item.description }}
    Skills Covered
    {%- for skill in item.skills -%} @@ -44,7 +44,7 @@

    Take 5

    {%- if item.live -%}

    {{ item.title }}

    Course ID: {{ item.course_ID }}
    -
    Short Description: {{ item.short_description }}
    +
    Description: {{ item.description }}
    URL: {{ item.title | slugify | prepend: take5_path }}
    Poster Art: {{ item.poster_art | prepend: site.url }}
    {%- endif -%} diff --git a/tests/catalog/test-lister.html b/tests/catalog/test-lister.html index 397862e2e..df31d77a1 100644 --- a/tests/catalog/test-lister.html +++ b/tests/catalog/test-lister.html @@ -14,7 +14,7 @@ Course ID Title - Short Description + Description Length @@ -30,11 +30,11 @@ {{ item.title }} {% endif %} - - {{ item.short_description | truncate: 160 }} + + {{ item.description | truncate: 160 }} - - {{ item.short_description | size }} + + {{ item.description | size }} {% endfor %} diff --git a/tests/featurer.html b/tests/featurer.html index ca897db49..30ac4a76c 100644 --- a/tests/featurer.html +++ b/tests/featurer.html @@ -46,7 +46,7 @@ {"title": "{{ site.data.courses[featured].title }}", "url": "{{ site.data.courses[featured].url }}", - "description": "{{ site.data.courses[featured].short_description }}", + "description": "{{ site.data.courses[featured].description }}", "instructor_name": "{{ instructor_name }}", "instructor_title": "{{ instructor_title }}", "artwork": ["{{ artwork_svg | prepend: artwork_path_svg diff --git a/tests/take5/take5-content-test.html b/tests/take5/take5-content-test.html index c3d8cceea..05508aa47 100644 --- a/tests/take5/take5-content-test.html +++ b/tests/take5/take5-content-test.html @@ -62,7 +62,7 @@

    WARNING: There are {{ feature_count }} featured items!

    Date Video ID Video Duration - Short Description + Description Meta Partial? Poster Art @@ -127,9 +127,9 @@

    WARNING: There are {{ feature_count }} featured items!

    {{ item.video_duration }} {% endif %} - - {% if item.short_description == null %}MISSING VALUE{% else %} - {% assign this_description = item.short_description | strip_html %} + + {% if item.description == null %}MISSING VALUE{% else %} + {% assign this_description = item.description | strip_html %} {% if this_description contains "lorem" or this_description contains "ipsum" %} May contain placeholder text! ({{this_description | size }} chars){% else %} true ({{this_description | size }} chars) diff --git a/tests/take5/take5-lister.html b/tests/take5/take5-lister.html index 854bb2328..a83247b0b 100644 --- a/tests/take5/take5-lister.html +++ b/tests/take5/take5-lister.html @@ -14,7 +14,7 @@ Course ID Title - Short Description + Description {% for take5_hash in sorted_catalog %} @@ -29,8 +29,8 @@ {{ item.title }} {% endif %} - - {{ item.short_description }} + + {{ item.description }} {% endfor %} diff --git a/webinars/index.html b/webinars/index.html index 3db4a31e5..3daaa27f9 100644 --- a/webinars/index.html +++ b/webinars/index.html @@ -56,7 +56,7 @@

    Webinars

    {{ item.content_category }}

    {{ webinar_title }}{% if webinar_subtitle %}: {{ webinar_subtitle }}{%- endif -%}

    {%- if item.register -%} -

    {{ item.short_description }}

    +

    {{ item.description }}

    Live streaming on {{ item.event_date | date: "%A, %B %-d, %Y at " }}{{ item.event_time }}

    {%- endif -%} From 39bdb7c3c0d10d86f285cebec364bbdb449cd931 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:23:35 -0400 Subject: [PATCH 05/67] replace `event_title` with `title` --- _data/webinars/web0001-designing-for-understanding.yml | 2 +- _data/webinars/web0002-designing-for-real-people.yml | 2 +- _data/webinars/web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- _data/webinars/web0005-state-of-responsive-web-design.yml | 2 +- _data/webinars/web0006-keeping-up-with-javascript.yml | 2 +- _data/webinars/web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- _data/webinars/web0013-decade-of-responsive-web-design.yml | 2 +- _includes/partials/meta/logic-webinars.html | 4 ++-- _layouts/webinar.html | 4 ++-- feeds/_partials/webinars.html | 2 +- feeds/webinars.json | 2 +- tests/webinars/webinars-test.html | 2 +- webinars/index.html | 2 +- 19 files changed, 21 insertions(+), 21 deletions(-) diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index ce8b903e6..b95f6e809 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -1,6 +1,6 @@ --- event_ID: web0001-designing-for-understanding -event_title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" +title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." permalink: /webinars/designing-for-understanding diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index b0dbfa899..2d13fbae0 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -1,6 +1,6 @@ --- event_ID: web0002-designing-for-real-people -event_title: "Designing for Real People: Making the Case for Meaningful UX" +title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." permalink: /webinars/designing-for-real-people diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index ca9f31be5..765be206d 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -1,6 +1,6 @@ --- event_ID: web0003-right-sizing-your-rapid-prototypes -event_title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" +title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." permalink: /webinars/right-sizing-your-rapid-prototypes diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index cafa5c56d..06747fae4 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -1,6 +1,6 @@ --- event_ID: web0004-web-design-is-hard -event_title: "Web Design is Hard" +title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." permalink: /webinars/web-design-is-hard diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index d9669b509..17eb09b0f 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -1,6 +1,6 @@ --- event_ID: web0005-state-of-responsive-web-design -event_title: "The State of Responsive Web Design" +title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." permalink: /webinars/state-of-responsive-web-design diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index 9b4f673f6..755d5afdd 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -1,6 +1,6 @@ --- event_ID: web0006-keeping-up-with-javascript -event_title: "Keeping Up with JavaScript is a Full-time Job" +title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." permalink: /webinars/keeping-up-with-javascript diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 4e338f350..4fe2b89e4 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -1,6 +1,6 @@ --- event_ID: web0007-design-systems-and-creativity -event_title: "Design Systems and Creativity: Unlikely Allies" +title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." permalink: /webinars/design-systems-and-creativity diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index a3dd21794..dd7d5efc2 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -1,6 +1,6 @@ --- event_ID: web0008-rethinking-full-stack -event_title: "Rethinking Full Stack:
    Cost and Compromise" +title: "Rethinking Full Stack:
    Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." permalink: /webinars/rethinking-full-stack diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index 490a5e1ec..d3bd47398 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -1,6 +1,6 @@ --- event_ID: web0009-future-of-web-layout -event_title: "The Future of Web Layout" +title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." permalink: /webinars/future-of-web-layout diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index 46cce1784..3dcec7da5 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -1,6 +1,6 @@ --- event_ID: web0010-planning-before-pixels -event_title: "Planning Before Pixels: Create with Purpose" +title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." permalink: /webinars/planning-before-pixels diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 5da0201b1..72f17aa00 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -1,6 +1,6 @@ --- event_ID: web0011-prototyping-as-process -event_title: "UX Design: Prototyping as Process" +title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." permalink: /webinars/prototyping-as-process diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index c5b079a91..5f43ba44c 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -1,6 +1,6 @@ --- event_ID: web0012-remote-work -event_title: "Remote Work: Can It Work for You?" +title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." permalink: /webinars/remote-work diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index 62c216486..18c93f284 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -1,6 +1,6 @@ --- event_ID: web0013-decade-of-responsive-web-design -event_title: "A Decade of Responsive Web Design" +title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." permalink: /webinars/decade-of-responsive-web-design diff --git a/_includes/partials/meta/logic-webinars.html b/_includes/partials/meta/logic-webinars.html index 99e00472b..058166559 100644 --- a/_includes/partials/meta/logic-webinars.html +++ b/_includes/partials/meta/logic-webinars.html @@ -5,14 +5,14 @@ {%- assign og_description = event.description | strip_html -%} {%- if event.event_ID == "web0005-state-of-responsive-web-design" -%} {%- assign og_url = "https://thegymnasium.com/webinars/state-of-responsive-web-design" -%} - {%- assign og_title = event.event_title -%} + {%- assign og_title = event.title -%} {%- else -%} {%- assign path = event.event_ID -%} {%- assign path = path | slice: 8,path.size -%} {%- assign og_url = path | prepend: "https://thegymnasium.com/webinars/" -%} - {%- assign og_title = event.event_title -%} + {%- assign og_title = event.title -%} {%- endif -%} {%- if event.register == true -%} diff --git a/_layouts/webinar.html b/_layouts/webinar.html index 884ab7281..f9a2515b1 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -6,7 +6,7 @@ {% assign webinar = site.data.webinars[page.event_ID] %} - + {%- else -%}

    No video ID provided!

    {%- endif -%} diff --git a/_includes/webinar-registration-form.html b/_includes/webinar-registration-form.html index b0c30b542..68c1ca066 100644 --- a/_includes/webinar-registration-form.html +++ b/_includes/webinar-registration-form.html @@ -2,7 +2,7 @@

    Register

    - +
    • diff --git a/_layouts/take5-raw.html b/_layouts/take5-raw.html index db6f17da6..8313377c6 100644 --- a/_layouts/take5-raw.html +++ b/_layouts/take5-raw.html @@ -7,7 +7,7 @@ {%- assign main = site.data.pages.courses -%} -{%- assign course = site.data.take5[page.course_ID] -%} +{%- assign course = site.data.take5[page.course_id] -%} {%- include partials/nav-courses-format.html page_active = "take5" -%} @@ -16,7 +16,7 @@
      -
      +
      {%- comment -%} // // VIDEO @@ -44,7 +44,7 @@

      {{ course.title }}

      {{ course.description }}

      - {% include take5/video.html video_ID=course.video_ID %} + {% include take5/video.html video_id=course.video_id %}
      @@ -139,7 +139,7 @@

      Related Content

      + id="{{ course.course_id }}-transcript">

      {{ course.title }}

      with {{ course.instructor }}

      diff --git a/_layouts/webinar.html b/_layouts/webinar.html index f9a2515b1..b40eac384 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -4,7 +4,7 @@ {%- include partials/test-top.html -%} {%- endif -%} -{% assign webinar = site.data.webinars[page.event_ID] %} +{% assign webinar = site.data.webinars[page.event_id] %} {% if webinar.video %} @@ -71,7 +71,7 @@

      {{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% include webinar-registration-form.html %} {% else %} - {% if webinar.video and webinar.video_ID %} + {% if webinar.video and webinar.video_id %}

      This webinar recording is now available. {% include event-video.html %} {% else %} @@ -80,7 +80,7 @@

      {{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% endif %} - {% if webinar.resources and webinar.video and webinar.video_ID %} + {% if webinar.resources and webinar.video and webinar.video_id %} {% include webinar-resources.html %} {% else %} diff --git a/courses/full/GYM-100/meta.md b/courses/full/GYM-100/meta.md index 5d209c234..f45cb8031 100644 --- a/courses/full/GYM-100/meta.md +++ b/courses/full/GYM-100/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-100 +course_id: GYM-100 permalink: /courses/full/gym-100/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-101/meta.md b/courses/full/GYM-101/meta.md index 771b0754b..1da40999b 100644 --- a/courses/full/GYM-101/meta.md +++ b/courses/full/GYM-101/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-101 +course_id: GYM-101 permalink: /courses/full/gym-101/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-102/meta.md b/courses/full/GYM-102/meta.md index a7afc7279..a0901aa77 100644 --- a/courses/full/GYM-102/meta.md +++ b/courses/full/GYM-102/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-102 +course_id: GYM-102 permalink: /courses/full/gym-102/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-103/meta.md b/courses/full/GYM-103/meta.md index e21a40a25..68beda195 100644 --- a/courses/full/GYM-103/meta.md +++ b/courses/full/GYM-103/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-103 +course_id: GYM-103 permalink: /courses/full/gym-103/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-104/meta.md b/courses/full/GYM-104/meta.md index 07c29aa86..4fa410b34 100644 --- a/courses/full/GYM-104/meta.md +++ b/courses/full/GYM-104/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-104 +course_id: GYM-104 permalink: /courses/full/gym-104/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-105/meta.md b/courses/full/GYM-105/meta.md index 3c26635df..05c026f70 100644 --- a/courses/full/GYM-105/meta.md +++ b/courses/full/GYM-105/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-105 +course_id: GYM-105 permalink: /courses/full/gym-105/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-106/meta.md b/courses/full/GYM-106/meta.md index 3241fa6cc..5d4a7b30a 100644 --- a/courses/full/GYM-106/meta.md +++ b/courses/full/GYM-106/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-106 +course_id: GYM-106 permalink: /courses/full/gym-106/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-107/meta.md b/courses/full/GYM-107/meta.md index 7c19f430b..b2d21288e 100644 --- a/courses/full/GYM-107/meta.md +++ b/courses/full/GYM-107/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-107 +course_id: GYM-107 permalink: /courses/full/gym-107/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-108/meta.md b/courses/full/GYM-108/meta.md index f97b2e215..939455f6f 100644 --- a/courses/full/GYM-108/meta.md +++ b/courses/full/GYM-108/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-108 +course_id: GYM-108 permalink: /courses/full/gym-108/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-109/meta.md b/courses/full/GYM-109/meta.md index 5f3adb44d..346490e25 100644 --- a/courses/full/GYM-109/meta.md +++ b/courses/full/GYM-109/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-109 +course_id: GYM-109 permalink: /courses/full/gym-109/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/course-list-recent.html b/courses/full/course-list-recent.html index 8c732d8f4..13368b25e 100644 --- a/courses/full/course-list-recent.html +++ b/courses/full/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "full" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Learn More diff --git a/courses/gym-shorts/GYM-001/meta.md b/courses/gym-shorts/GYM-001/meta.md index 120e08ee3..33005da14 100644 --- a/courses/gym-shorts/GYM-001/meta.md +++ b/courses/gym-shorts/GYM-001/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-001 +course_id: GYM-001 permalink: /courses/gym-shorts/gym-001/meta/ --- diff --git a/courses/gym-shorts/GYM-002/meta.md b/courses/gym-shorts/GYM-002/meta.md index b7341e5d1..973b8ca8d 100644 --- a/courses/gym-shorts/GYM-002/meta.md +++ b/courses/gym-shorts/GYM-002/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-002 +course_id: GYM-002 permalink: /courses/gym-shorts/gym-002/meta/ --- diff --git a/courses/gym-shorts/GYM-003/meta.md b/courses/gym-shorts/GYM-003/meta.md index bcc0d55cd..06d5bf9b3 100644 --- a/courses/gym-shorts/GYM-003/meta.md +++ b/courses/gym-shorts/GYM-003/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-003 +course_id: GYM-003 permalink: /courses/gym-shorts/gym-003/meta/ --- diff --git a/courses/gym-shorts/GYM-004/meta.md b/courses/gym-shorts/GYM-004/meta.md index ccfeb3be0..dd98285b8 100644 --- a/courses/gym-shorts/GYM-004/meta.md +++ b/courses/gym-shorts/GYM-004/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-004 +course_id: GYM-004 permalink: /courses/gym-shorts/gym-004/meta/ --- diff --git a/courses/gym-shorts/GYM-005/meta.md b/courses/gym-shorts/GYM-005/meta.md index e2a76e674..ed65d963f 100644 --- a/courses/gym-shorts/GYM-005/meta.md +++ b/courses/gym-shorts/GYM-005/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-005 +course_id: GYM-005 permalink: /courses/gym-shorts/gym-005/meta/ --- diff --git a/courses/gym-shorts/GYM-006/meta.md b/courses/gym-shorts/GYM-006/meta.md index c60ffd14a..70621e9d5 100644 --- a/courses/gym-shorts/GYM-006/meta.md +++ b/courses/gym-shorts/GYM-006/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-006 +course_id: GYM-006 permalink: /courses/gym-shorts/gym-006/meta/ --- diff --git a/courses/gym-shorts/GYM-007/meta.md b/courses/gym-shorts/GYM-007/meta.md index c6f8f4f0d..d6cd0f654 100644 --- a/courses/gym-shorts/GYM-007/meta.md +++ b/courses/gym-shorts/GYM-007/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-007 +course_id: GYM-007 permalink: /courses/gym-shorts/gym-007/meta/ --- diff --git a/courses/gym-shorts/GYM-008/meta.md b/courses/gym-shorts/GYM-008/meta.md index cfff65037..debca157c 100644 --- a/courses/gym-shorts/GYM-008/meta.md +++ b/courses/gym-shorts/GYM-008/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-008 +course_id: GYM-008 permalink: /courses/gym-shorts/gym-008/meta/ --- diff --git a/courses/gym-shorts/GYM-009/meta.md b/courses/gym-shorts/GYM-009/meta.md index 1410828db..96b0025bc 100644 --- a/courses/gym-shorts/GYM-009/meta.md +++ b/courses/gym-shorts/GYM-009/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-009 +course_id: GYM-009 permalink: /courses/gym-shorts/gym-009/meta/ --- diff --git a/courses/gym-shorts/GYM-011/meta.md b/courses/gym-shorts/GYM-011/meta.md index 10192348a..18d515091 100644 --- a/courses/gym-shorts/GYM-011/meta.md +++ b/courses/gym-shorts/GYM-011/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-011 +course_id: GYM-011 permalink: /courses/gym-shorts/gym-011/meta/ --- diff --git a/courses/gym-shorts/GYM-012/meta.md b/courses/gym-shorts/GYM-012/meta.md index 3b51adbb5..b4b743b19 100644 --- a/courses/gym-shorts/GYM-012/meta.md +++ b/courses/gym-shorts/GYM-012/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-012 +course_id: GYM-012 permalink: /courses/gym-shorts/gym-012/meta/ --- diff --git a/courses/gym-shorts/GYM-013/meta.md b/courses/gym-shorts/GYM-013/meta.md index 3a4246681..c3e796d3c 100644 --- a/courses/gym-shorts/GYM-013/meta.md +++ b/courses/gym-shorts/GYM-013/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-013 +course_id: GYM-013 permalink: /courses/gym-shorts/gym-013/meta/ --- diff --git a/courses/gym-shorts/GYM-014/meta.md b/courses/gym-shorts/GYM-014/meta.md index 31dfc7a3b..cbe93d474 100644 --- a/courses/gym-shorts/GYM-014/meta.md +++ b/courses/gym-shorts/GYM-014/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-014 +course_id: GYM-014 permalink: /courses/gym-shorts/gym-014/meta/ --- diff --git a/courses/gym-shorts/GYM-015/meta.md b/courses/gym-shorts/GYM-015/meta.md index d875116ef..df814d91d 100644 --- a/courses/gym-shorts/GYM-015/meta.md +++ b/courses/gym-shorts/GYM-015/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-015 +course_id: GYM-015 permalink: /courses/gym-shorts/gym-015/meta/ --- diff --git a/courses/gym-shorts/GYM-016/meta.md b/courses/gym-shorts/GYM-016/meta.md index 5059f9303..0d1e845ff 100644 --- a/courses/gym-shorts/GYM-016/meta.md +++ b/courses/gym-shorts/GYM-016/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-016 +course_id: GYM-016 permalink: /courses/gym-shorts/gym-016/meta/ --- diff --git a/courses/gym-shorts/GYM-017/meta.md b/courses/gym-shorts/GYM-017/meta.md index adcf7c848..6a95ba894 100644 --- a/courses/gym-shorts/GYM-017/meta.md +++ b/courses/gym-shorts/GYM-017/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-017 +course_id: GYM-017 permalink: /courses/gym-shorts/gym-017/meta/ --- diff --git a/courses/gym-shorts/GYM-018/meta.md b/courses/gym-shorts/GYM-018/meta.md index 6a5568c34..32f9322b0 100644 --- a/courses/gym-shorts/GYM-018/meta.md +++ b/courses/gym-shorts/GYM-018/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-018 +course_id: GYM-018 permalink: /courses/gym-shorts/gym-018/meta/ --- diff --git a/courses/gym-shorts/GYM-019/meta.md b/courses/gym-shorts/GYM-019/meta.md index 3d8c8f64f..97a61f708 100644 --- a/courses/gym-shorts/GYM-019/meta.md +++ b/courses/gym-shorts/GYM-019/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-019 +course_id: GYM-019 permalink: /courses/gym-shorts/gym-019/meta/ --- diff --git a/courses/gym-shorts/GYM-020/meta.md b/courses/gym-shorts/GYM-020/meta.md index 835020e2a..7b4e17455 100644 --- a/courses/gym-shorts/GYM-020/meta.md +++ b/courses/gym-shorts/GYM-020/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-020 +course_id: GYM-020 permalink: /courses/gym-shorts/gym-020/meta/ --- diff --git a/courses/gym-shorts/course-list-recent.html b/courses/gym-shorts/course-list-recent.html index 45c5eb3db..fba5b1857 100644 --- a/courses/gym-shorts/course-list-recent.html +++ b/courses/gym-shorts/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "short" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Learn More diff --git a/courses/index.html b/courses/index.html index 5d20cb5bf..70679b634 100644 --- a/courses/index.html +++ b/courses/index.html @@ -46,25 +46,25 @@

      @@ -110,25 +110,25 @@

      @@ -174,25 +174,25 @@

      @@ -238,22 +238,22 @@

      diff --git a/courses/take5/GYM-5001/index.md b/courses/take5/GYM-5001/index.md index 0f518f7b6..3318a3690 100644 --- a/courses/take5/GYM-5001/index.md +++ b/courses/take5/GYM-5001/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/ --- diff --git a/courses/take5/GYM-5001/meta.md b/courses/take5/GYM-5001/meta.md index 4d536ac2d..2d37a157e 100644 --- a/courses/take5/GYM-5001/meta.md +++ b/courses/take5/GYM-5001/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/meta/ --- diff --git a/courses/take5/GYM-5002/index.md b/courses/take5/GYM-5002/index.md index 1f8871eb2..477d649ca 100644 --- a/courses/take5/GYM-5002/index.md +++ b/courses/take5/GYM-5002/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5002 +course_id: GYM-5002 permalink: /courses/take5/gym-5002 --- diff --git a/courses/take5/GYM-5002/meta.md b/courses/take5/GYM-5002/meta.md index 92d16c1c3..6627d7b08 100644 --- a/courses/take5/GYM-5002/meta.md +++ b/courses/take5/GYM-5002/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5002 +course_id: GYM-5002 permalink: /courses/take5/gym-5002/meta/ --- diff --git a/courses/take5/GYM-5003/index.md b/courses/take5/GYM-5003/index.md index 6c213ef9a..e6a1b9884 100644 --- a/courses/take5/GYM-5003/index.md +++ b/courses/take5/GYM-5003/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5003 +course_id: GYM-5003 permalink: /courses/take5/gym-5003 --- diff --git a/courses/take5/GYM-5003/meta.md b/courses/take5/GYM-5003/meta.md index 373c4908a..24e93973e 100644 --- a/courses/take5/GYM-5003/meta.md +++ b/courses/take5/GYM-5003/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5003 +course_id: GYM-5003 permalink: /courses/take5/gym-5003/meta/ --- diff --git a/courses/take5/GYM-5004/index.md b/courses/take5/GYM-5004/index.md index b73624872..292d00185 100644 --- a/courses/take5/GYM-5004/index.md +++ b/courses/take5/GYM-5004/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5004 +course_id: GYM-5004 permalink: /courses/take5/gym-5004 --- diff --git a/courses/take5/GYM-5004/meta.md b/courses/take5/GYM-5004/meta.md index 5362ce5ab..fe4141c13 100644 --- a/courses/take5/GYM-5004/meta.md +++ b/courses/take5/GYM-5004/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5004 +course_id: GYM-5004 permalink: /courses/take5/gym-5004/meta/ --- diff --git a/courses/take5/GYM-5005/index.md b/courses/take5/GYM-5005/index.md index 216e739ef..c32adb951 100644 --- a/courses/take5/GYM-5005/index.md +++ b/courses/take5/GYM-5005/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5005 +course_id: GYM-5005 permalink: /courses/take5/gym-5005 --- diff --git a/courses/take5/GYM-5005/meta.md b/courses/take5/GYM-5005/meta.md index 6588fd305..72d1bfada 100644 --- a/courses/take5/GYM-5005/meta.md +++ b/courses/take5/GYM-5005/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5005 +course_id: GYM-5005 permalink: /courses/take5/gym-5005/meta/ --- diff --git a/courses/take5/GYM-5006/index.md b/courses/take5/GYM-5006/index.md index 9d53b7efa..26fbed520 100644 --- a/courses/take5/GYM-5006/index.md +++ b/courses/take5/GYM-5006/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5006 +course_id: GYM-5006 permalink: /courses/take5/gym-5006 --- diff --git a/courses/take5/GYM-5006/meta.md b/courses/take5/GYM-5006/meta.md index 8da1ebd3c..ed34f7445 100644 --- a/courses/take5/GYM-5006/meta.md +++ b/courses/take5/GYM-5006/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5006 +course_id: GYM-5006 permalink: /courses/take5/gym-5006/meta/ --- diff --git a/courses/take5/GYM-5007/index.md b/courses/take5/GYM-5007/index.md index 8e2f622c3..f5d6d4061 100644 --- a/courses/take5/GYM-5007/index.md +++ b/courses/take5/GYM-5007/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5007 +course_id: GYM-5007 permalink: /courses/take5/gym-5007 --- diff --git a/courses/take5/GYM-5007/meta.md b/courses/take5/GYM-5007/meta.md index 3cf411644..d6125529d 100644 --- a/courses/take5/GYM-5007/meta.md +++ b/courses/take5/GYM-5007/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5007 +course_id: GYM-5007 permalink: /courses/take5/gym-5007/meta/ --- diff --git a/courses/take5/GYM-5008/index.md b/courses/take5/GYM-5008/index.md index f0e24ef61..c71c9d8e5 100644 --- a/courses/take5/GYM-5008/index.md +++ b/courses/take5/GYM-5008/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5008 +course_id: GYM-5008 permalink: /courses/take5/gym-5008 --- diff --git a/courses/take5/GYM-5008/meta.md b/courses/take5/GYM-5008/meta.md index 201a1c8f1..13f776cb4 100644 --- a/courses/take5/GYM-5008/meta.md +++ b/courses/take5/GYM-5008/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5008 +course_id: GYM-5008 permalink: /courses/take5/gym-5008/meta/ --- diff --git a/courses/take5/GYM-5009/index.md b/courses/take5/GYM-5009/index.md index 5ffea9918..9d54164e6 100644 --- a/courses/take5/GYM-5009/index.md +++ b/courses/take5/GYM-5009/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5009 +course_id: GYM-5009 permalink: /courses/take5/gym-5009 --- diff --git a/courses/take5/GYM-5009/meta.md b/courses/take5/GYM-5009/meta.md index 918048243..99e522da5 100644 --- a/courses/take5/GYM-5009/meta.md +++ b/courses/take5/GYM-5009/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5009 +course_id: GYM-5009 permalink: /courses/take5/gym-5009/meta/ --- diff --git a/courses/take5/GYM-5010/index.md b/courses/take5/GYM-5010/index.md index 6c71bf257..a49a9bfa2 100644 --- a/courses/take5/GYM-5010/index.md +++ b/courses/take5/GYM-5010/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5010 +course_id: GYM-5010 permalink: /courses/take5/gym-5010 --- diff --git a/courses/take5/GYM-5010/meta.md b/courses/take5/GYM-5010/meta.md index 4469c0c7c..955e66d70 100644 --- a/courses/take5/GYM-5010/meta.md +++ b/courses/take5/GYM-5010/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5010 +course_id: GYM-5010 permalink: /courses/take5/gym-5010/meta/ --- diff --git a/courses/take5/GYM-5011/index.md b/courses/take5/GYM-5011/index.md index f7feb5cb2..176dda764 100644 --- a/courses/take5/GYM-5011/index.md +++ b/courses/take5/GYM-5011/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5011 +course_id: GYM-5011 permalink: /courses/take5/gym-5011 --- diff --git a/courses/take5/GYM-5011/meta.md b/courses/take5/GYM-5011/meta.md index 2a1bd0ce9..27def48f0 100644 --- a/courses/take5/GYM-5011/meta.md +++ b/courses/take5/GYM-5011/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5011 +course_id: GYM-5011 permalink: /courses/take5/gym-5011/meta/ --- diff --git a/courses/take5/GYM-5012/index.md b/courses/take5/GYM-5012/index.md index e13ab8c55..eb6a0f0ae 100644 --- a/courses/take5/GYM-5012/index.md +++ b/courses/take5/GYM-5012/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5012 +course_id: GYM-5012 permalink: /courses/take5/gym-5012 --- diff --git a/courses/take5/GYM-5012/meta.md b/courses/take5/GYM-5012/meta.md index b0f43c2bf..449211fc0 100644 --- a/courses/take5/GYM-5012/meta.md +++ b/courses/take5/GYM-5012/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5012 +course_id: GYM-5012 permalink: /courses/take5/gym-5012/meta/ --- diff --git a/courses/take5/GYM-5013/index.md b/courses/take5/GYM-5013/index.md index 434fd4d20..8cb4de2e5 100644 --- a/courses/take5/GYM-5013/index.md +++ b/courses/take5/GYM-5013/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5013 +course_id: GYM-5013 permalink: /courses/take5/gym-5013 --- diff --git a/courses/take5/GYM-5013/meta.md b/courses/take5/GYM-5013/meta.md index 44edea813..5f8c0d256 100644 --- a/courses/take5/GYM-5013/meta.md +++ b/courses/take5/GYM-5013/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5013 +course_id: GYM-5013 permalink: /courses/take5/gym-5013/meta/ --- diff --git a/courses/take5/GYM-5014/index.md b/courses/take5/GYM-5014/index.md index 83c5a25a4..61b2a3846 100644 --- a/courses/take5/GYM-5014/index.md +++ b/courses/take5/GYM-5014/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5014 +course_id: GYM-5014 permalink: /courses/take5/gym-5014 --- diff --git a/courses/take5/GYM-5014/meta.md b/courses/take5/GYM-5014/meta.md index 20f786891..12da62a99 100644 --- a/courses/take5/GYM-5014/meta.md +++ b/courses/take5/GYM-5014/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5014 +course_id: GYM-5014 permalink: /courses/take5/gym-5014/meta/ --- diff --git a/courses/take5/GYM-5015/index.md b/courses/take5/GYM-5015/index.md index 01c7674ae..ddbc33696 100644 --- a/courses/take5/GYM-5015/index.md +++ b/courses/take5/GYM-5015/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5015 +course_id: GYM-5015 permalink: /courses/take5/gym-5015 --- diff --git a/courses/take5/GYM-5015/meta.md b/courses/take5/GYM-5015/meta.md index 4903ce172..12d396a72 100644 --- a/courses/take5/GYM-5015/meta.md +++ b/courses/take5/GYM-5015/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5015 +course_id: GYM-5015 permalink: /courses/take5/gym-5015/meta/ --- diff --git a/courses/take5/GYM-5016/index.md b/courses/take5/GYM-5016/index.md index 3c27d01e7..0e9048a9b 100644 --- a/courses/take5/GYM-5016/index.md +++ b/courses/take5/GYM-5016/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5016 +course_id: GYM-5016 permalink: /courses/take5/gym-5016 --- diff --git a/courses/take5/GYM-5016/meta.md b/courses/take5/GYM-5016/meta.md index cf7689b6b..af5da204b 100644 --- a/courses/take5/GYM-5016/meta.md +++ b/courses/take5/GYM-5016/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5016 +course_id: GYM-5016 permalink: /courses/take5/gym-5016/meta/ --- diff --git a/courses/take5/GYM-5017/index.md b/courses/take5/GYM-5017/index.md index e03bf3787..ae1f77315 100644 --- a/courses/take5/GYM-5017/index.md +++ b/courses/take5/GYM-5017/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5017 +course_id: GYM-5017 permalink: /courses/take5/gym-5017 --- diff --git a/courses/take5/GYM-5017/meta.md b/courses/take5/GYM-5017/meta.md index 488afbeb4..a042c8251 100644 --- a/courses/take5/GYM-5017/meta.md +++ b/courses/take5/GYM-5017/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5017 +course_id: GYM-5017 permalink: /courses/take5/gym-5017/meta/ --- diff --git a/courses/take5/GYM-5018/index.md b/courses/take5/GYM-5018/index.md index e95ea4dcf..705bb9a61 100644 --- a/courses/take5/GYM-5018/index.md +++ b/courses/take5/GYM-5018/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5018 +course_id: GYM-5018 permalink: /courses/take5/gym-5018 --- diff --git a/courses/take5/GYM-5018/meta.md b/courses/take5/GYM-5018/meta.md index 44f7b1953..2c13561af 100644 --- a/courses/take5/GYM-5018/meta.md +++ b/courses/take5/GYM-5018/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5018 +course_id: GYM-5018 permalink: /courses/take5/gym-5018/meta/ --- diff --git a/courses/take5/GYM-5019/index.md b/courses/take5/GYM-5019/index.md index 842e15c84..be2216d03 100644 --- a/courses/take5/GYM-5019/index.md +++ b/courses/take5/GYM-5019/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5019 +course_id: GYM-5019 permalink: /courses/take5/gym-5019 --- diff --git a/courses/take5/GYM-5019/meta.md b/courses/take5/GYM-5019/meta.md index f207052fa..ece7b9075 100644 --- a/courses/take5/GYM-5019/meta.md +++ b/courses/take5/GYM-5019/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5019 +course_id: GYM-5019 permalink: /courses/take5/gym-5019/meta/ --- diff --git a/courses/take5/GYM-5020/index.md b/courses/take5/GYM-5020/index.md index d889eb5ae..47d68945d 100644 --- a/courses/take5/GYM-5020/index.md +++ b/courses/take5/GYM-5020/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5020 +course_id: GYM-5020 permalink: /courses/take5/gym-5020 --- diff --git a/courses/take5/GYM-5020/meta.md b/courses/take5/GYM-5020/meta.md index e99bc7c54..fb7667acd 100644 --- a/courses/take5/GYM-5020/meta.md +++ b/courses/take5/GYM-5020/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5020 +course_id: GYM-5020 permalink: /courses/take5/gym-5020/meta/ --- diff --git a/courses/take5/GYM-5021/index.md b/courses/take5/GYM-5021/index.md index 29efd2b82..7cbfea5fd 100644 --- a/courses/take5/GYM-5021/index.md +++ b/courses/take5/GYM-5021/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5021 +course_id: GYM-5021 permalink: /courses/take5/gym-5021 --- diff --git a/courses/take5/GYM-5021/meta.md b/courses/take5/GYM-5021/meta.md index 2852df0a4..e96a46392 100644 --- a/courses/take5/GYM-5021/meta.md +++ b/courses/take5/GYM-5021/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5021 +course_id: GYM-5021 permalink: /courses/take5/gym-5021/meta/ --- diff --git a/courses/take5/GYM-5022/index.md b/courses/take5/GYM-5022/index.md index 49d1d4786..6b25e38e3 100644 --- a/courses/take5/GYM-5022/index.md +++ b/courses/take5/GYM-5022/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5022 +course_id: GYM-5022 permalink: /courses/take5/gym-5022 --- diff --git a/courses/take5/GYM-5022/meta.md b/courses/take5/GYM-5022/meta.md index 07e0880e7..1b7a25ea2 100644 --- a/courses/take5/GYM-5022/meta.md +++ b/courses/take5/GYM-5022/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5022 +course_id: GYM-5022 permalink: /courses/take5/gym-5022/meta/ --- diff --git a/courses/take5/GYM-5023/index.md b/courses/take5/GYM-5023/index.md index b70c9a26e..a28b895c5 100644 --- a/courses/take5/GYM-5023/index.md +++ b/courses/take5/GYM-5023/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5023 +course_id: GYM-5023 permalink: /courses/take5/gym-5023 --- diff --git a/courses/take5/GYM-5023/meta.md b/courses/take5/GYM-5023/meta.md index 7e50d28ab..92d0b2512 100644 --- a/courses/take5/GYM-5023/meta.md +++ b/courses/take5/GYM-5023/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5023 +course_id: GYM-5023 permalink: /courses/take5/gym-5023/meta/ --- diff --git a/courses/take5/GYM-5024/index.md b/courses/take5/GYM-5024/index.md index eda2d4fc7..124b41ac3 100644 --- a/courses/take5/GYM-5024/index.md +++ b/courses/take5/GYM-5024/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5024 +course_id: GYM-5024 permalink: /courses/take5/gym-5024 --- diff --git a/courses/take5/GYM-5024/meta.md b/courses/take5/GYM-5024/meta.md index 84c9cb569..0f1e64f28 100644 --- a/courses/take5/GYM-5024/meta.md +++ b/courses/take5/GYM-5024/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5024 +course_id: GYM-5024 permalink: /courses/take5/gym-5024/meta/ --- diff --git a/courses/take5/GYM-5025/index.md b/courses/take5/GYM-5025/index.md index dd6446836..edde49289 100644 --- a/courses/take5/GYM-5025/index.md +++ b/courses/take5/GYM-5025/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5025 +course_id: GYM-5025 permalink: /courses/take5/gym-5025 --- diff --git a/courses/take5/GYM-5025/meta.md b/courses/take5/GYM-5025/meta.md index ac24fdef9..1c8f1d7ec 100644 --- a/courses/take5/GYM-5025/meta.md +++ b/courses/take5/GYM-5025/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5025 +course_id: GYM-5025 permalink: /courses/take5/gym-5025/meta/ --- diff --git a/courses/take5/GYM-5026/index.md b/courses/take5/GYM-5026/index.md index a81581afa..5d3bac92e 100644 --- a/courses/take5/GYM-5026/index.md +++ b/courses/take5/GYM-5026/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5026 +course_id: GYM-5026 permalink: /courses/take5/gym-5026 --- diff --git a/courses/take5/GYM-5026/meta.md b/courses/take5/GYM-5026/meta.md index 48884efc9..8bbdf12e5 100644 --- a/courses/take5/GYM-5026/meta.md +++ b/courses/take5/GYM-5026/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5026 +course_id: GYM-5026 permalink: /courses/take5/gym-5026/meta/ --- diff --git a/courses/take5/GYM-5027/index.md b/courses/take5/GYM-5027/index.md index bba3200e6..4648c3a5e 100644 --- a/courses/take5/GYM-5027/index.md +++ b/courses/take5/GYM-5027/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5027 +course_id: GYM-5027 permalink: /courses/take5/gym-5027 --- diff --git a/courses/take5/GYM-5027/meta.md b/courses/take5/GYM-5027/meta.md index 44830cd8a..71e04195a 100644 --- a/courses/take5/GYM-5027/meta.md +++ b/courses/take5/GYM-5027/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5027 +course_id: GYM-5027 permalink: /courses/take5/gym-5027/meta/ --- diff --git a/courses/take5/GYM-5028/index.md b/courses/take5/GYM-5028/index.md index 84082277a..867b12ee4 100644 --- a/courses/take5/GYM-5028/index.md +++ b/courses/take5/GYM-5028/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5028 +course_id: GYM-5028 permalink: /courses/take5/gym-5028 --- diff --git a/courses/take5/GYM-5028/meta.md b/courses/take5/GYM-5028/meta.md index a9a3b3b8d..8b11e5580 100644 --- a/courses/take5/GYM-5028/meta.md +++ b/courses/take5/GYM-5028/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5028 +course_id: GYM-5028 permalink: /courses/take5/gym-5028/meta/ --- diff --git a/courses/take5/GYM-5029/index.md b/courses/take5/GYM-5029/index.md index 6429884ed..6782be706 100644 --- a/courses/take5/GYM-5029/index.md +++ b/courses/take5/GYM-5029/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5029 +course_id: GYM-5029 permalink: /courses/take5/gym-5029 --- diff --git a/courses/take5/GYM-5029/meta.md b/courses/take5/GYM-5029/meta.md index 20b3ccad9..0dece6d92 100644 --- a/courses/take5/GYM-5029/meta.md +++ b/courses/take5/GYM-5029/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5029 +course_id: GYM-5029 permalink: /courses/take5/gym-5029/meta/ --- diff --git a/courses/take5/GYM-5030/index.md b/courses/take5/GYM-5030/index.md index e782d018a..73c25374d 100644 --- a/courses/take5/GYM-5030/index.md +++ b/courses/take5/GYM-5030/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5030 +course_id: GYM-5030 permalink: /courses/take5/gym-5030 --- diff --git a/courses/take5/GYM-5030/meta.md b/courses/take5/GYM-5030/meta.md index 1156055c2..51957f2ca 100644 --- a/courses/take5/GYM-5030/meta.md +++ b/courses/take5/GYM-5030/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5030 +course_id: GYM-5030 permalink: /courses/take5/gym-5030/meta/ --- diff --git a/courses/take5/GYM-5031/index.md b/courses/take5/GYM-5031/index.md index 56b95a6ed..34e2e0593 100644 --- a/courses/take5/GYM-5031/index.md +++ b/courses/take5/GYM-5031/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5031 +course_id: GYM-5031 permalink: /courses/take5/gym-5031 --- diff --git a/courses/take5/GYM-5031/meta.md b/courses/take5/GYM-5031/meta.md index 7baf7247f..22e9be890 100644 --- a/courses/take5/GYM-5031/meta.md +++ b/courses/take5/GYM-5031/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5031 +course_id: GYM-5031 permalink: /courses/take5/gym-5031/meta/ --- diff --git a/courses/take5/GYM-5032/index.md b/courses/take5/GYM-5032/index.md index e0677acab..48f671588 100644 --- a/courses/take5/GYM-5032/index.md +++ b/courses/take5/GYM-5032/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5032 +course_id: GYM-5032 permalink: /courses/take5/gym-5032 --- diff --git a/courses/take5/GYM-5032/meta.md b/courses/take5/GYM-5032/meta.md index 186976e9a..446fe2bf0 100644 --- a/courses/take5/GYM-5032/meta.md +++ b/courses/take5/GYM-5032/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5032 +course_id: GYM-5032 permalink: /courses/take5/gym-5032/meta/ --- diff --git a/courses/take5/GYM-5033/index.md b/courses/take5/GYM-5033/index.md index 901e5f26b..69a083311 100644 --- a/courses/take5/GYM-5033/index.md +++ b/courses/take5/GYM-5033/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5033 +course_id: GYM-5033 permalink: /courses/take5/gym-5033 --- diff --git a/courses/take5/GYM-5033/meta.md b/courses/take5/GYM-5033/meta.md index d811851ef..15a9d5964 100644 --- a/courses/take5/GYM-5033/meta.md +++ b/courses/take5/GYM-5033/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5033 +course_id: GYM-5033 permalink: /courses/take5/gym-5033/meta/ --- diff --git a/courses/take5/GYM-5034/index.md b/courses/take5/GYM-5034/index.md index 89d75e9a0..27b5aced6 100644 --- a/courses/take5/GYM-5034/index.md +++ b/courses/take5/GYM-5034/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5034 +course_id: GYM-5034 permalink: /courses/take5/gym-5034 --- diff --git a/courses/take5/GYM-5034/meta.md b/courses/take5/GYM-5034/meta.md index 8b7a8212f..b8a3a3a0e 100644 --- a/courses/take5/GYM-5034/meta.md +++ b/courses/take5/GYM-5034/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5034 +course_id: GYM-5034 permalink: /courses/take5/gym-5034/meta/ --- diff --git a/courses/take5/GYM-5035/index.md b/courses/take5/GYM-5035/index.md index 34717d610..d28d7255e 100644 --- a/courses/take5/GYM-5035/index.md +++ b/courses/take5/GYM-5035/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5035 +course_id: GYM-5035 permalink: /courses/take5/gym-5035 --- diff --git a/courses/take5/GYM-5035/meta.md b/courses/take5/GYM-5035/meta.md index 427dfbf63..d19b176cf 100644 --- a/courses/take5/GYM-5035/meta.md +++ b/courses/take5/GYM-5035/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5035 +course_id: GYM-5035 permalink: /courses/take5/gym-5035/meta/ --- diff --git a/courses/take5/GYM-5036/index.md b/courses/take5/GYM-5036/index.md index 84304a3df..87503c454 100644 --- a/courses/take5/GYM-5036/index.md +++ b/courses/take5/GYM-5036/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5036 +course_id: GYM-5036 permalink: /courses/take5/gym-5036 --- diff --git a/courses/take5/GYM-5036/meta.md b/courses/take5/GYM-5036/meta.md index 8da203c63..5c06466ff 100644 --- a/courses/take5/GYM-5036/meta.md +++ b/courses/take5/GYM-5036/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5036 +course_id: GYM-5036 permalink: /courses/take5/gym-5036/meta/ --- diff --git a/courses/take5/GYM-5037/index.md b/courses/take5/GYM-5037/index.md index ba27393e7..bb3382ff2 100644 --- a/courses/take5/GYM-5037/index.md +++ b/courses/take5/GYM-5037/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5037 +course_id: GYM-5037 permalink: /courses/take5/gym-5037 --- diff --git a/courses/take5/GYM-5037/meta.md b/courses/take5/GYM-5037/meta.md index 93b5d260d..9d64a033e 100644 --- a/courses/take5/GYM-5037/meta.md +++ b/courses/take5/GYM-5037/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5037 +course_id: GYM-5037 permalink: /courses/take5/gym-5037/meta/ --- diff --git a/courses/take5/GYM-5038/index.md b/courses/take5/GYM-5038/index.md index d99c3e71f..6d5757940 100644 --- a/courses/take5/GYM-5038/index.md +++ b/courses/take5/GYM-5038/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5038 +course_id: GYM-5038 permalink: /courses/take5/gym-5038 --- diff --git a/courses/take5/GYM-5038/meta.md b/courses/take5/GYM-5038/meta.md index 377da7bf1..376999cb3 100644 --- a/courses/take5/GYM-5038/meta.md +++ b/courses/take5/GYM-5038/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5038 +course_id: GYM-5038 permalink: /courses/take5/gym-5038/meta/ --- diff --git a/courses/take5/GYM-5039/index.md b/courses/take5/GYM-5039/index.md index a87ae531a..b55d6e893 100644 --- a/courses/take5/GYM-5039/index.md +++ b/courses/take5/GYM-5039/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5039 +course_id: GYM-5039 permalink: /courses/take5/gym-5039 --- diff --git a/courses/take5/GYM-5039/meta.md b/courses/take5/GYM-5039/meta.md index ffa243912..42e2199bd 100644 --- a/courses/take5/GYM-5039/meta.md +++ b/courses/take5/GYM-5039/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5039 +course_id: GYM-5039 permalink: /courses/take5/gym-5039/meta/ --- diff --git a/courses/take5/GYM-5040/index.md b/courses/take5/GYM-5040/index.md index 4c7e49b53..1e6ada49d 100644 --- a/courses/take5/GYM-5040/index.md +++ b/courses/take5/GYM-5040/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5040 +course_id: GYM-5040 permalink: /courses/take5/gym-5040 --- diff --git a/courses/take5/GYM-5040/meta.md b/courses/take5/GYM-5040/meta.md index 5595ada9b..659de5f9e 100644 --- a/courses/take5/GYM-5040/meta.md +++ b/courses/take5/GYM-5040/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5040 +course_id: GYM-5040 permalink: /courses/take5/gym-5040/meta/ --- diff --git a/courses/take5/GYM-5041/index.md b/courses/take5/GYM-5041/index.md index d9adb092c..46ba15c67 100644 --- a/courses/take5/GYM-5041/index.md +++ b/courses/take5/GYM-5041/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5041 +course_id: GYM-5041 permalink: /courses/take5/gym-5041 --- diff --git a/courses/take5/GYM-5041/meta.md b/courses/take5/GYM-5041/meta.md index 5d101f130..33d37ad4f 100644 --- a/courses/take5/GYM-5041/meta.md +++ b/courses/take5/GYM-5041/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5041 +course_id: GYM-5041 permalink: /courses/take5/gym-5041/meta/ --- diff --git a/courses/take5/GYM-5042/index.md b/courses/take5/GYM-5042/index.md index a9763cea8..073e47410 100644 --- a/courses/take5/GYM-5042/index.md +++ b/courses/take5/GYM-5042/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5042 +course_id: GYM-5042 permalink: /courses/take5/gym-5042 --- diff --git a/courses/take5/GYM-5042/meta.md b/courses/take5/GYM-5042/meta.md index ab153e7f8..f35f302f1 100644 --- a/courses/take5/GYM-5042/meta.md +++ b/courses/take5/GYM-5042/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5042 +course_id: GYM-5042 permalink: /courses/take5/gym-5042/meta/ --- diff --git a/courses/take5/GYM-5043/index.md b/courses/take5/GYM-5043/index.md index 091f98c0f..f1838da2f 100644 --- a/courses/take5/GYM-5043/index.md +++ b/courses/take5/GYM-5043/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5043 +course_id: GYM-5043 permalink: /courses/take5/gym-5043 --- diff --git a/courses/take5/GYM-5043/meta.md b/courses/take5/GYM-5043/meta.md index 3807c0abb..3a854b99b 100644 --- a/courses/take5/GYM-5043/meta.md +++ b/courses/take5/GYM-5043/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5043 +course_id: GYM-5043 permalink: /courses/take5/gym-5043/meta/ --- diff --git a/courses/take5/GYM-5044/index.md b/courses/take5/GYM-5044/index.md index 52181e535..498af7ab1 100644 --- a/courses/take5/GYM-5044/index.md +++ b/courses/take5/GYM-5044/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5044 +course_id: GYM-5044 permalink: /courses/take5/gym-5044 --- diff --git a/courses/take5/GYM-5044/meta.md b/courses/take5/GYM-5044/meta.md index 253ea9e35..56c5997e3 100644 --- a/courses/take5/GYM-5044/meta.md +++ b/courses/take5/GYM-5044/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5044 +course_id: GYM-5044 permalink: /courses/take5/gym-5044/meta/ --- diff --git a/courses/take5/GYM-5045/index.md b/courses/take5/GYM-5045/index.md index c0421e123..078a61d63 100644 --- a/courses/take5/GYM-5045/index.md +++ b/courses/take5/GYM-5045/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5045 +course_id: GYM-5045 permalink: /courses/take5/gym-5045 --- diff --git a/courses/take5/GYM-5045/meta.md b/courses/take5/GYM-5045/meta.md index 18d9ecdad..7ba6229e2 100644 --- a/courses/take5/GYM-5045/meta.md +++ b/courses/take5/GYM-5045/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5045 +course_id: GYM-5045 permalink: /courses/take5/gym-5045/meta/ --- diff --git a/courses/take5/GYM-5046/index.md b/courses/take5/GYM-5046/index.md index 09a329057..7c12e7c46 100644 --- a/courses/take5/GYM-5046/index.md +++ b/courses/take5/GYM-5046/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5046 +course_id: GYM-5046 permalink: /courses/take5/gym-5046 --- diff --git a/courses/take5/GYM-5046/meta.md b/courses/take5/GYM-5046/meta.md index 7361cbdb9..5286b6137 100644 --- a/courses/take5/GYM-5046/meta.md +++ b/courses/take5/GYM-5046/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5046 +course_id: GYM-5046 permalink: /courses/take5/gym-5046/meta/ --- diff --git a/courses/take5/GYM-5047/index.md b/courses/take5/GYM-5047/index.md index e57e87027..c3c463f72 100644 --- a/courses/take5/GYM-5047/index.md +++ b/courses/take5/GYM-5047/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5047 +course_id: GYM-5047 permalink: /courses/take5/gym-5047 --- diff --git a/courses/take5/GYM-5047/meta.md b/courses/take5/GYM-5047/meta.md index e18c56c76..655c6a3da 100644 --- a/courses/take5/GYM-5047/meta.md +++ b/courses/take5/GYM-5047/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5047 +course_id: GYM-5047 permalink: /courses/take5/gym-5047/meta/ --- diff --git a/courses/take5/GYM-5048/index.md b/courses/take5/GYM-5048/index.md index 40b83afaa..ca23da1db 100644 --- a/courses/take5/GYM-5048/index.md +++ b/courses/take5/GYM-5048/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5048 +course_id: GYM-5048 permalink: /courses/take5/gym-5048 --- diff --git a/courses/take5/GYM-5048/meta.md b/courses/take5/GYM-5048/meta.md index 5dfa1725e..101b86ac8 100644 --- a/courses/take5/GYM-5048/meta.md +++ b/courses/take5/GYM-5048/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5048 +course_id: GYM-5048 permalink: /courses/take5/gym-5048/meta/ --- diff --git a/courses/take5/GYM-5049/index.md b/courses/take5/GYM-5049/index.md index ea48c464d..eb25cfe37 100644 --- a/courses/take5/GYM-5049/index.md +++ b/courses/take5/GYM-5049/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5049 +course_id: GYM-5049 permalink: /courses/take5/gym-5049 --- diff --git a/courses/take5/GYM-5049/meta.md b/courses/take5/GYM-5049/meta.md index ad69d8c5d..1c1553e00 100644 --- a/courses/take5/GYM-5049/meta.md +++ b/courses/take5/GYM-5049/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5049 +course_id: GYM-5049 permalink: /courses/take5/gym-5049/meta/ --- diff --git a/courses/take5/GYM-5050/index.md b/courses/take5/GYM-5050/index.md index c56d545ff..8865481d9 100644 --- a/courses/take5/GYM-5050/index.md +++ b/courses/take5/GYM-5050/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5050 +course_id: GYM-5050 permalink: /courses/take5/gym-5050 --- diff --git a/courses/take5/GYM-5050/meta.md b/courses/take5/GYM-5050/meta.md index 899f3577a..9a7e2d85a 100644 --- a/courses/take5/GYM-5050/meta.md +++ b/courses/take5/GYM-5050/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5050 +course_id: GYM-5050 permalink: /courses/take5/gym-5050/meta/ --- diff --git a/courses/take5/GYM-5051/index.md b/courses/take5/GYM-5051/index.md index f1c93818c..4e746e256 100644 --- a/courses/take5/GYM-5051/index.md +++ b/courses/take5/GYM-5051/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5051 +course_id: GYM-5051 permalink: /courses/take5/gym-5051 --- diff --git a/courses/take5/GYM-5051/meta.md b/courses/take5/GYM-5051/meta.md index 948e11ce0..f1ab0537d 100644 --- a/courses/take5/GYM-5051/meta.md +++ b/courses/take5/GYM-5051/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5051 +course_id: GYM-5051 permalink: /courses/take5/gym-5051/meta/ --- diff --git a/courses/take5/GYM-5052/index.md b/courses/take5/GYM-5052/index.md index 375bcaf35..7e25032d8 100644 --- a/courses/take5/GYM-5052/index.md +++ b/courses/take5/GYM-5052/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5052 +course_id: GYM-5052 permalink: /courses/take5/gym-5052 --- diff --git a/courses/take5/GYM-5052/meta.md b/courses/take5/GYM-5052/meta.md index 8ad021310..643bfaf10 100644 --- a/courses/take5/GYM-5052/meta.md +++ b/courses/take5/GYM-5052/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5052 +course_id: GYM-5052 permalink: /courses/take5/gym-5052/meta/ --- diff --git a/courses/take5/GYM-5053/index.md b/courses/take5/GYM-5053/index.md index d124f16bb..db7830531 100644 --- a/courses/take5/GYM-5053/index.md +++ b/courses/take5/GYM-5053/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5053 +course_id: GYM-5053 permalink: /courses/take5/gym-5053 --- diff --git a/courses/take5/GYM-5053/meta.md b/courses/take5/GYM-5053/meta.md index 0e5605115..3986e824e 100644 --- a/courses/take5/GYM-5053/meta.md +++ b/courses/take5/GYM-5053/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5053 +course_id: GYM-5053 permalink: /courses/take5/gym-5053/meta/ --- diff --git a/courses/take5/GYM-5056/index.md b/courses/take5/GYM-5056/index.md index 61d8a874f..11ce3f045 100644 --- a/courses/take5/GYM-5056/index.md +++ b/courses/take5/GYM-5056/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5056 +course_id: GYM-5056 permalink: /courses/take5/gym-5056 --- diff --git a/courses/take5/GYM-5056/meta.md b/courses/take5/GYM-5056/meta.md index 8b3d164bd..a3f4f95fa 100644 --- a/courses/take5/GYM-5056/meta.md +++ b/courses/take5/GYM-5056/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5056 +course_id: GYM-5056 permalink: /courses/take5/gym-5056/meta/ --- diff --git a/courses/take5/course-list-recent.html b/courses/take5/course-list-recent.html index 09579f3be..7979449f0 100644 --- a/courses/take5/course-list-recent.html +++ b/courses/take5/course-list-recent.html @@ -21,7 +21,7 @@ {%- for course_hash in catalog -%} {%- assign item = course_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -31,7 +31,7 @@ {%- for item in publish_order -%} {%- if site.data.take5[item].live == true -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -40,11 +40,11 @@ {%- for item in recent limit: 5 -%} {%- assign course = site.data.take5[item] -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Watch Now diff --git a/courses/take5/index.html b/courses/take5/index.html index daf36e280..8d49d6bdf 100644 --- a/courses/take5/index.html +++ b/courses/take5/index.html @@ -57,7 +57,7 @@

      {{ main.take5_tutorials.format }}

      {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -70,7 +70,7 @@

      {{ main.take5_tutorials.format }}

      {%- if site.data.take5[item].live == true -%} {%- if site.data.take5[item].featured == true -%} - {%- assign featured = site.data.take5[item].course_ID -%} + {%- assign featured = site.data.take5[item].course_id -%} {%- assign featured_title = site.data.take5[item].title -%} {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} @@ -80,12 +80,12 @@

      {{ main.take5_tutorials.format }}

      {%- assign featured_poster_art = site.data.take5[item].poster_art -%} {%- assign featured_video_duration = site.data.take5[item].video_duration -%} {%- else -%} - {%- comment -%} Not featured, but live? Add the course_ID to the RECENT list {%- endcomment -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not featured, but live? Add the course_id to the RECENT list {%- endcomment -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- else -%} - {%- comment -%} Not live? Add the course_ID to the UPCOMING list {%- endcomment -%} - {%- assign upcoming = upcoming | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not live? Add the course_id to the UPCOMING list {%- endcomment -%} + {%- assign upcoming = upcoming | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} diff --git a/courses/workshops/GYM-700/meta.md b/courses/workshops/GYM-700/meta.md index d294a9e08..4cd313d7e 100644 --- a/courses/workshops/GYM-700/meta.md +++ b/courses/workshops/GYM-700/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-700 +course_id: GYM-700 permalink: /courses/workshops/gym-700/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index c86899521..1e7acbbb4 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "workshop" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} Cover Image + {{ course.course_id | remove: 'gym-' }} {{ course.title }} Cover Image
      Learn More diff --git a/docs/README.md b/docs/README.md index 598b480ad..2d6ce17f7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -22,7 +22,7 @@ This YAML file defines the key paramters for a Take 5. ```yaml --- -course_ID: GYM-5001 # Unique course ID +course_id: GYM-5001 # Unique course ID title: "Making a CSS Parallax Effect" # MUST be quoted date: 2019-10-28T00:00:00-04:00 # Publish date — MUST be in this format course_type: take5 # This is required @@ -31,7 +31,7 @@ poster_art: /img/take5/posters/gym-5001.jpg # Path to poster image (may be depre live: true # Only set to live when ready to publish! instructor: "Jeremy Osborn" # MUST be quoted topic: "Design & Development" # MUST be quoted -video_ID: zRNUPU2dujU # YouTube video ID +video_id: zRNUPU2dujU # YouTube video ID video_duration: "4:59" # Must be quoted featured: true # Toggle for display in catalog and hero description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." @@ -57,7 +57,7 @@ related_content: ```yaml --- -course_ID: GYM-5000 +course_id: GYM-5000 title: date: 2019-11-15T00:00:00-04:00 course_type: take5 @@ -66,7 +66,7 @@ poster_art: /img/take5/posters/gym-5000.jpg live: false instructor: topic: -video_ID: +video_id: video_duration: "0:00" featured: false description: @@ -139,7 +139,7 @@ The Take 5 stub page contains frontmatter and the full text from the video trans ```yaml --- layout: take5-raw -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001 --- @@ -158,7 +158,7 @@ The meta include stub file only contains frontmatter. ```yaml --- layout: meta -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/meta/ --- ``` diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html index 4426dc4d9..20fb6ea3a 100644 --- a/feeds/_partials/courses.html +++ b/feeds/_partials/courses.html @@ -2,7 +2,7 @@ {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} {{data}} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html index df6fa3e88..298fe1bb9 100644 --- a/feeds/_partials/tutorials.html +++ b/feeds/_partials/tutorials.html @@ -2,10 +2,10 @@ {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} - {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {%- assign data = data | replace: 'video_id', 'video_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html index 849236877..819c7f4f2 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.html @@ -5,10 +5,10 @@ {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'title', 'title' -%} - {%- assign data = data | replace: 'event_ID', 'id' -%} + {%- assign data = data | replace: 'event_id', 'id' -%} {%- assign data = data | replace: 'content_category', 'category' -%} - {%- assign data = data | replace: 'video_ID', 'video_id' -%} - {%- assign data = data | replace: 'webinar_ID', 'webinar_id' -%} + {%- assign data = data | replace: 'video_id', 'video_id' -%} + {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/featured-courses.html b/feeds/featured-courses.html index f9ba3bd96..a2e0c5333 100644 --- a/feeds/featured-courses.html +++ b/feeds/featured-courses.html @@ -17,8 +17,8 @@ {%- for featured in featured_courses -%} -{%- assign artwork_png = site.data.courses[featured].course_ID | downcase | append: '.png' -%} -{%- assign artwork_svg = site.data.courses[featured].course_ID | downcase | append: '.svg' -%} +{%- assign artwork_png = site.data.courses[featured].course_id | downcase | append: '.png' -%} +{%- assign artwork_svg = site.data.courses[featured].course_id | downcase | append: '.svg' -%} {%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} {%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} diff --git a/feeds/webinars.json b/feeds/webinars.json index c46661305..55d4c3e81 100644 --- a/feeds/webinars.json +++ b/feeds/webinars.json @@ -9,7 +9,7 @@ permalink: /feeds/webinars.json {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} @@ -36,7 +36,7 @@ permalink: /feeds/webinars.json {%- assign webinar_url = data.permalink | prepend: site.gymurl -%} { - "id": "{{ data.event_ID | slice: 0,7 }}", + "id": "{{ data.event_id | slice: 0,7 }}", "slug": "{{ data.permalink | replace: '/webinars/', '' }}", "category": "{{ data.content_category }}", "date": "{{ data.event_date }}", @@ -66,8 +66,8 @@ permalink: /feeds/webinars.json "time_blurb": "Live streaming on {{ data.event_date | date: '%A, %B %-d, %Y at ' }}{{ data.event_time }}", "title": "{{ title }}", "video": {%- if data.video -%}{{data.video}}{%- else -%}false{%- endif -%}, - "video_id": "{{ data.video_ID }}", - "webinar_id": "{{ data.webinar_ID }}", + "video_id": "{{ data.video_id }}", + "webinar_id": "{{ data.webinar_id }}", "webinar_question_key": "{{ data.webinar_question_key }}" } {% unless forloop.last %},{% endunless %} diff --git a/hub-pages/collections/collections.html b/hub-pages/collections/collections.html index 84a457211..7ad15620e 100644 --- a/hub-pages/collections/collections.html +++ b/hub-pages/collections/collections.html @@ -24,7 +24,7 @@

      {{ main.collections.format | prepend: 'Content ' }}

      {%- assign hub_page = collection_hash[1] -%} {%- unless hub_page.exclude -%}
    • -
      +

      {{ hub_page.title }}

      diff --git a/partials/final-exam-modal.html b/partials/final-exam-modal.html index 04123391a..feda591d4 100644 --- a/partials/final-exam-modal.html +++ b/partials/final-exam-modal.html @@ -270,7 +270,7 @@

      Darn.

      let previous_score; - let COURSE_ID; + let COURSE_id; // this helper function gets a ton of information about the score for this particular problem // based on information embedded on this page @@ -280,8 +280,8 @@

      Darn.

      GYM_SHORT: 'GYM_SHORT', }; - COURSE_ID = parseInt($('#__course_number__').text(), 10); - const COURSE_TYPE = COURSE_ID >= 100 ? COURSE_TYPES.FULL_COURSE : COURSE_TYPES.GYM_SHORT; + COURSE_id = parseInt($('#__course_number__').text(), 10); + const COURSE_TYPE = COURSE_id >= 100 ? COURSE_TYPES.FULL_COURSE : COURSE_TYPES.GYM_SHORT; let PASSING_SCORE = 85; if (COURSE_TYPE === COURSE_TYPES.FULL_COURSE) { @@ -340,7 +340,7 @@

      Darn.

      // we have a score, let's do stuff if (score >= passingScore) { - // previous_score = getPrevScore(COURSE_ID); + // previous_score = getPrevScore(COURSE_id); // if (score > previous_score && attempts_remaining > 0) { // console.log('[gym] new high score! ', score, '\nprevious score: ', previous_score); @@ -394,9 +394,9 @@

      Darn.

      let problem_id = document.getElementById('exam-problem').getAttribute('data-id'); - COURSE_ID = parseInt(document.getElementById('__course_number__').innerText, 10); + COURSE_id = parseInt(document.getElementById('__course_number__').innerText, 10); - // previous_score = getPrevScore(COURSE_ID); + // previous_score = getPrevScore(COURSE_id); // console.log('[gym] exam page | previous score: ', previous_score); diff --git a/take5/catalog-blitz.html b/take5/catalog-blitz.html index 41f40cfb6..c7fc66cdc 100644 --- a/take5/catalog-blitz.html +++ b/take5/catalog-blitz.html @@ -41,7 +41,7 @@

      Take 5

      {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -54,7 +54,7 @@

      Take 5

      {%- if site.data.take5[item].live == true -%} {%- if site.data.take5[item].featured == true -%} - {%- assign featured = site.data.take5[item].course_ID -%} + {%- assign featured = site.data.take5[item].course_id -%} {%- assign featured_title = site.data.take5[item].title -%} {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} @@ -63,12 +63,12 @@

      Take 5

      {%- assign featured_poster_art = site.data.take5[item].poster_art -%} {%- assign featured_video_duration = site.data.take5[item].video_duration -%} {%- else -%} - {%- comment -%} Not featured, but live? Add the course_ID to the RECENT list {%- endcomment -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not featured, but live? Add the course_id to the RECENT list {%- endcomment -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- else -%} - {%- comment -%} Not live? Add the course_ID to the UPCOMING list {%- endcomment -%} - {%- assign upcoming = upcoming | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not live? Add the course_id to the UPCOMING list {%- endcomment -%} + {%- assign upcoming = upcoming | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -137,7 +137,7 @@

      Recent

      {%- comment -%} - Reverse the order of the recents (most recent = highest course_ID) + Reverse the order of the recents (most recent = highest course_id) {%- endcomment -%}
        {%- assign recent = recent | reverse -%} diff --git a/take5/catalog-debug.html b/take5/catalog-debug.html index 21168565c..a3d8159a6 100644 --- a/take5/catalog-debug.html +++ b/take5/catalog-debug.html @@ -25,8 +25,8 @@

        {{ item.title }}

      • URL: {{ item.url | relative_url }}
      • Date: {{ item.date }}
      • Live: {{ item.live }}
      • -
      • Course ID: {{ item.course_ID }}
      • -
      • Video ID: {{ item.video_ID }}
      • +
      • Course ID: {{ item.course_id }}
      • +
      • Video ID: {{ item.video_id }}
      • Video Duration: {{ item.video_duration }}
      • Instructor: {{ item.instructor }}
      • Topic: {{ item.topic }}
      • diff --git a/tests/catalog/full-lister.html b/tests/catalog/full-lister.html index 4a88d9db0..3bd806f59 100644 --- a/tests/catalog/full-lister.html +++ b/tests/catalog/full-lister.html @@ -10,12 +10,12 @@

        Courses

        {% for course_hash in sorted_catalog %} {% assign item = course_hash[1] %} - {% assign png_path = "/img/course-artwork/png/" | append: item.course_ID | downcase | append: ".png" %} - {% assign svg_path = "/img/course-artwork/svg/" | append: item.course_ID | downcase | append: ".svg" %} + {% assign png_path = "/img/course-artwork/png/" | append: item.course_id | downcase | append: ".png" %} + {% assign svg_path = "/img/course-artwork/svg/" | append: item.course_id | downcase | append: ".svg" %}

        {{ item.title }}

        -
        Course ID: {{ item.course_ID }}
        -
        Production URL: {{ item.course_ID }}
        +
        Course ID: {{ item.course_id }}
        +
        Production URL: {{ item.course_id }}
        Course Artwork PNG: {{ png_path | prepend: site.url }}
        Course Artwork SVG: {{ svg_path | prepend: site.url }}
        Description: {{ item.description }}
        @@ -43,7 +43,7 @@

        Take 5

        {% assign item = take5_hash[1] %} {%- if item.live -%}

        {{ item.title }}

        -
        Course ID: {{ item.course_ID }}
        +
        Course ID: {{ item.course_id }}
        Description: {{ item.description }}
        URL: {{ item.title | slugify | prepend: take5_path }}
        Poster Art: {{ item.poster_art | prepend: site.url }}
        diff --git a/tests/catalog/metas.html b/tests/catalog/metas.html index 6f243edeb..85b0363c0 100644 --- a/tests/catalog/metas.html +++ b/tests/catalog/metas.html @@ -37,7 +37,7 @@

        Course Meta Inspector

        {%- for item in catalog -%} - {%- assign id = item.course_ID -%} + {%- assign id = item.course_id -%} {%- assign course_prefix = id | remove: "GYM-" | slice: 0, 2 -%} {% comment %} Exceptions for Take5™ tutorials {% endcomment %} diff --git a/tests/catalog/test-lister.html b/tests/catalog/test-lister.html index df31d77a1..76c955695 100644 --- a/tests/catalog/test-lister.html +++ b/tests/catalog/test-lister.html @@ -23,7 +23,7 @@ - {{ item.course_ID }} + {{ item.course_id }} {% if item.title ==null %}MISSING VALUE{% else %} diff --git a/tests/featurer.html b/tests/featurer.html index 30ac4a76c..1c91b95dd 100644 --- a/tests/featurer.html +++ b/tests/featurer.html @@ -15,8 +15,8 @@ {%- for featured in featured_courses -%} -{%- assign artwork_png = site.data.courses[featured].course_ID | downcase | append: '.png' -%} -{%- assign artwork_svg = site.data.courses[featured].course_ID | downcase | append: '.svg' -%} +{%- assign artwork_png = site.data.courses[featured].course_id | downcase | append: '.png' -%} +{%- assign artwork_svg = site.data.courses[featured].course_id | downcase | append: '.svg' -%} {%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} {%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} diff --git a/tests/hero/hero-test-index.html b/tests/hero/hero-test-index.html index ef4a1fea5..b8766ec58 100644 --- a/tests/hero/hero-test-index.html +++ b/tests/hero/hero-test-index.html @@ -32,8 +32,8 @@

        Live Stream Hero

        or hero.embed_source == "" or hero.twitch_channel == undefined or hero.twitch_channel == "" - or hero.youtube_video_ID == undefined - or hero.youtube_video_ID == "" + or hero.youtube_video_id == undefined + or hero.youtube_video_id == "" %} error {% endif %} diff --git a/tests/take5/take5-content-test.html b/tests/take5/take5-content-test.html index 05508aa47..e66622e5c 100644 --- a/tests/take5/take5-content-test.html +++ b/tests/take5/take5-content-test.html @@ -73,7 +73,7 @@

        WARNING: There are {{ feature_count }} featured items!

        {% assign item = take5_hash[1] %} - {{ item.course_ID }} + {{ item.course_id }} {% if item.title == null %}MISSING VALUE{% else %} @@ -115,8 +115,8 @@

        WARNING: There are {{ feature_count }} featured items!

        {% endif %} - {% if item.video_ID == null %}MISSING VALUE{% else %} - {{ item.video_ID }} + {% if item.video_id == null %}MISSING VALUE{% else %} + {{ item.video_id }} {% endif %} @@ -137,12 +137,12 @@

        WARNING: There are {{ feature_count }} featured items!

        {% endif %} - {% assign meta_partial = item.course_ID | prepend: 'courses/take5/' | append: '/meta.md' %} + {% assign meta_partial = item.course_id | prepend: 'courses/take5/' | append: '/meta.md' %} {% capture meta_partial_test %}{% file_exists {{ meta_partial }} %}{% endcapture %} {% if meta_partial_test == "false" %}MISSING FILE{% else %} -
        {{ meta_partial_test }} + {{ meta_partial_test }} {% endif %} diff --git a/tests/take5/take5-date-lister.html b/tests/take5/take5-date-lister.html index 20f5988ce..5d7369ae7 100644 --- a/tests/take5/take5-date-lister.html +++ b/tests/take5/take5-date-lister.html @@ -26,7 +26,7 @@ {% for take5_hash in catalog %} {% assign item = take5_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -36,7 +36,7 @@ {%- for item in publish_order -%}
        -Course ID: {{ site.data.take5[item].course_ID }}
        +Course ID: {{ site.data.take5[item].course_id }}
         Title: {{ site.data.take5[item].title }}
         Publish Date: {{ site.data.take5[item].date }}
         Publish Date: {{ site.data.take5[item].date | date_to_string }}
        diff --git a/tests/take5/take5-lister.html b/tests/take5/take5-lister.html
        index a83247b0b..960501b40 100644
        --- a/tests/take5/take5-lister.html
        +++ b/tests/take5/take5-lister.html
        @@ -22,7 +22,7 @@
         
         
             
        -    {{ item.course_ID }}
        +    {{ item.course_id }}
             
             
             {% if item.title ==null %}MISSING VALUE{% else %}
        diff --git a/tests/take5/take5-publish-status.html b/tests/take5/take5-publish-status.html
        index 0c2bb3789..9989b817d 100644
        --- a/tests/take5/take5-publish-status.html
        +++ b/tests/take5/take5-publish-status.html
        @@ -24,7 +24,7 @@
             {% for take5_hash in catalog %}
                 {% assign item = take5_hash[1] %}
                 {%- if item.date == pubdate -%}
        -            {%- assign publish_order = publish_order | push: item.course_ID -%}
        +            {%- assign publish_order = publish_order | push: item.course_id -%}
                 {%- endif -%}
             {% endfor %}
         
        @@ -36,7 +36,7 @@
         {%- for item in publish_order -%}
         {%- if site.data.take5[item].live == true -%}
         
        -    {{ site.data.take5[item].course_ID }}
        +    {{ site.data.take5[item].course_id }}
             {{ site.data.take5[item].title }}
             {{ site.data.take5[item].date | date: "%m/%d/%Y" }}
             {{ site.data.take5[item].topic }}
        diff --git a/tests/take5/take5-url-test.html b/tests/take5/take5-url-test.html
        index abf8fc4cd..36cd6e60b 100644
        --- a/tests/take5/take5-url-test.html
        +++ b/tests/take5/take5-url-test.html
        @@ -61,7 +61,7 @@ 

        Take 5 Testing: Gymnasium Production URLs

        - {{ item.course_ID }} + {{ item.course_id }} {% if item.title ==null %} @@ -74,7 +74,7 @@

        Take 5 Testing: Gymnasium Production URLs

        {{ item.url | absolute_url }}
        - {% assign meta_url = item.course_ID | prepend: '/' | prepend: base_path | append: '/meta/' | downcase %} + {% assign meta_url = item.course_id | prepend: '/' | prepend: base_path | append: '/meta/' | downcase %}
        {{ meta_url | absolute_url }}
        diff --git a/tests/webinars/metas.html b/tests/webinars/metas.html index 4a300a29d..5b129430c 100644 --- a/tests/webinars/metas.html +++ b/tests/webinars/metas.html @@ -26,7 +26,7 @@

        Webinars Meta Inspector

        {%- for item in webinars -%} {%- assign event = item[1] -%} - {%- assign id = event.event_ID -%} + {%- assign id = event.event_id -%} {%- include partials/meta/logic-webinars.html -%} diff --git a/tests/webinars/webinars-test.html b/tests/webinars/webinars-test.html index 226d022c9..ee92afce8 100644 --- a/tests/webinars/webinars-test.html +++ b/tests/webinars/webinars-test.html @@ -42,7 +42,7 @@ {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} diff --git a/webinars/index.html b/webinars/index.html index cfccd5948..a54dbea7a 100644 --- a/webinars/index.html +++ b/webinars/index.html @@ -13,7 +13,7 @@ {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} diff --git a/webinars/web0001/index.md b/webinars/web0001/index.md index b821f9500..ba715af92 100644 --- a/webinars/web0001/index.md +++ b/webinars/web0001/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0001-designing-for-understanding +event_id: web0001-designing-for-understanding permalink: /webinars/designing-for-understanding/ layout: webinar --- diff --git a/webinars/web0001/meta.md b/webinars/web0001/meta.md index b312c7c47..01bbb38c6 100644 --- a/webinars/web0001/meta.md +++ b/webinars/web0001/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0001-designing-for-understanding +event_id: web0001-designing-for-understanding permalink: /webinars/designing-for-understanding/meta/ layout: meta --- diff --git a/webinars/web0002/index.md b/webinars/web0002/index.md index 67b29b96e..c1c6cf4e9 100644 --- a/webinars/web0002/index.md +++ b/webinars/web0002/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0002-designing-for-real-people +event_id: web0002-designing-for-real-people permalink: /webinars/designing-for-real-people/ layout: webinar --- diff --git a/webinars/web0002/meta.md b/webinars/web0002/meta.md index 2f0c869e2..4d82d3f19 100644 --- a/webinars/web0002/meta.md +++ b/webinars/web0002/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0002-designing-for-real-people +event_id: web0002-designing-for-real-people permalink: /webinars/designing-for-real-people/meta/ layout: meta --- diff --git a/webinars/web0003/index.md b/webinars/web0003/index.md index 5831d5158..832e00b4f 100644 --- a/webinars/web0003/index.md +++ b/webinars/web0003/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0003-right-sizing-your-rapid-prototypes +event_id: web0003-right-sizing-your-rapid-prototypes permalink: /webinars/right-sizing-your-rapid-prototypes/ layout: webinar --- diff --git a/webinars/web0003/meta.md b/webinars/web0003/meta.md index 08c228ef7..2df7130d0 100644 --- a/webinars/web0003/meta.md +++ b/webinars/web0003/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0003-right-sizing-your-rapid-prototypes +event_id: web0003-right-sizing-your-rapid-prototypes permalink: /webinars/right-sizing-your-rapid-prototypes/meta/ layout: meta --- diff --git a/webinars/web0004/index.md b/webinars/web0004/index.md index bb78f55d9..4f36763d3 100644 --- a/webinars/web0004/index.md +++ b/webinars/web0004/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0004-web-design-is-hard +event_id: web0004-web-design-is-hard permalink: /webinars/web-design-is-hard/ layout: webinar --- diff --git a/webinars/web0004/meta.md b/webinars/web0004/meta.md index 6e5e4942d..36b3ddcdf 100644 --- a/webinars/web0004/meta.md +++ b/webinars/web0004/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0004-web-design-is-hard +event_id: web0004-web-design-is-hard permalink: /webinars/web-design-is-hard/meta/ layout: meta --- diff --git a/webinars/web0005/index.md b/webinars/web0005/index.md index 477d4aefc..9af7177da 100644 --- a/webinars/web0005/index.md +++ b/webinars/web0005/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0005-state-of-responsive-web-design +event_id: web0005-state-of-responsive-web-design permalink: /webinars/state-of-responsive-web-design/ layout: webinar --- diff --git a/webinars/web0005/meta.md b/webinars/web0005/meta.md index 1683dac79..4b0b62764 100644 --- a/webinars/web0005/meta.md +++ b/webinars/web0005/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0005-state-of-responsive-web-design +event_id: web0005-state-of-responsive-web-design permalink: /webinars/state-of-responsive-web-design/meta/ layout: meta --- diff --git a/webinars/web0006/index.md b/webinars/web0006/index.md index 3bf19c786..a8a381230 100644 --- a/webinars/web0006/index.md +++ b/webinars/web0006/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0006-keeping-up-with-javascript +event_id: web0006-keeping-up-with-javascript permalink: /webinars/keeping-up-with-javascript/ layout: webinar --- diff --git a/webinars/web0006/meta.md b/webinars/web0006/meta.md index 3892baaad..98857c130 100644 --- a/webinars/web0006/meta.md +++ b/webinars/web0006/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0006-keeping-up-with-javascript +event_id: web0006-keeping-up-with-javascript permalink: /webinars/keeping-up-with-javascript/meta/ layout: meta --- diff --git a/webinars/web0007/index.md b/webinars/web0007/index.md index 1ad06b1ea..307ee789a 100644 --- a/webinars/web0007/index.md +++ b/webinars/web0007/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0007-design-systems-and-creativity +event_id: web0007-design-systems-and-creativity permalink: /webinars/design-systems-and-creativity/ layout: webinar --- diff --git a/webinars/web0007/meta.md b/webinars/web0007/meta.md index 40de36a88..48d786047 100644 --- a/webinars/web0007/meta.md +++ b/webinars/web0007/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0007-design-systems-and-creativity +event_id: web0007-design-systems-and-creativity permalink: /webinars/design-systems-and-creativity/meta/ layout: meta --- diff --git a/webinars/web0008/index.md b/webinars/web0008/index.md index d5127010d..2092e0163 100644 --- a/webinars/web0008/index.md +++ b/webinars/web0008/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0008-rethinking-full-stack +event_id: web0008-rethinking-full-stack permalink: /webinars/rethinking-full-stack/ layout: webinar --- diff --git a/webinars/web0008/meta.md b/webinars/web0008/meta.md index 2dbc03bba..a2409443f 100644 --- a/webinars/web0008/meta.md +++ b/webinars/web0008/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0008-rethinking-full-stack +event_id: web0008-rethinking-full-stack permalink: /webinars/rethinking-full-stack/meta/ layout: meta --- diff --git a/webinars/web0009/index.md b/webinars/web0009/index.md index a74cebc77..3907c6bf3 100644 --- a/webinars/web0009/index.md +++ b/webinars/web0009/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0009-future-of-web-layout +event_id: web0009-future-of-web-layout permalink: /webinars/future-of-web-layout/ layout: webinar --- diff --git a/webinars/web0009/meta.md b/webinars/web0009/meta.md index b5f7c93e5..b08c7c2d3 100644 --- a/webinars/web0009/meta.md +++ b/webinars/web0009/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0009-future-of-web-layout +event_id: web0009-future-of-web-layout permalink: /webinars/future-of-web-layout/meta/ layout: meta --- diff --git a/webinars/web0010/index.md b/webinars/web0010/index.md index 8a7317735..8473e002a 100644 --- a/webinars/web0010/index.md +++ b/webinars/web0010/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0010-planning-before-pixels +event_id: web0010-planning-before-pixels permalink: /webinars/planning-before-pixels/ layout: webinar --- diff --git a/webinars/web0010/meta.md b/webinars/web0010/meta.md index 93bd95305..4da316abe 100644 --- a/webinars/web0010/meta.md +++ b/webinars/web0010/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0010-planning-before-pixels +event_id: web0010-planning-before-pixels permalink: /webinars/planning-before-pixels/meta/ layout: meta --- diff --git a/webinars/web0011/index.md b/webinars/web0011/index.md index 18993add4..ab1b9e89f 100644 --- a/webinars/web0011/index.md +++ b/webinars/web0011/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0011-prototyping-as-process +event_id: web0011-prototyping-as-process permalink: /webinars/prototyping-as-process/ layout: webinar --- diff --git a/webinars/web0011/meta.md b/webinars/web0011/meta.md index a16465241..869e914c4 100644 --- a/webinars/web0011/meta.md +++ b/webinars/web0011/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0011-prototyping-as-process +event_id: web0011-prototyping-as-process permalink: /webinars/prototyping-as-process/meta/ layout: meta --- diff --git a/webinars/web0012/index.md b/webinars/web0012/index.md index 59049fbe8..b6e0dd579 100644 --- a/webinars/web0012/index.md +++ b/webinars/web0012/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0012-remote-work +event_id: web0012-remote-work permalink: /webinars/remote-work/ layout: webinar --- diff --git a/webinars/web0012/meta.md b/webinars/web0012/meta.md index f0c761513..1287edd9d 100644 --- a/webinars/web0012/meta.md +++ b/webinars/web0012/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0012-remote-work +event_id: web0012-remote-work permalink: /webinars/remote-work/meta/ layout: meta --- diff --git a/webinars/web0013/index.md b/webinars/web0013/index.md index bbce7cd07..4d9adc49e 100644 --- a/webinars/web0013/index.md +++ b/webinars/web0013/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0013-decade-of-responsive-web-design +event_id: web0013-decade-of-responsive-web-design permalink: /webinars/decade-of-responsive-web-design/ layout: webinar --- diff --git a/webinars/web0013/meta.md b/webinars/web0013/meta.md index fdefa5065..b1a4a2fcb 100644 --- a/webinars/web0013/meta.md +++ b/webinars/web0013/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0013-decade-of-responsive-web-design +event_id: web0013-decade-of-responsive-web-design permalink: /webinars/decade-of-responsive-web-design/meta/ layout: meta --- From 9581abe496d95ca28744712b19d0f41a5f865c96 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:31:14 -0400 Subject: [PATCH 07/67] Update _data_config.yml --- _data_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data_config.yml b/_data_config.yml index 6c20740bd..d8669484b 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,6 @@ # Setup title: Gymnasium Data Feeds -url: https://data.thegymcms.com +url: https://data--thegymcms.netlify.app #https://data.thegymcms.com gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York From 6a3ada76c744b991da03537425bb4585cd7bec9e Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:35:43 -0400 Subject: [PATCH 08/67] standardize id key --- _data/courses/GYM-001.yml | 2 +- _data/courses/GYM-002.yml | 2 +- _data/courses/GYM-003.yml | 2 +- _data/courses/GYM-004.yml | 2 +- _data/courses/GYM-005.yml | 2 +- _data/courses/GYM-006.yml | 2 +- _data/courses/GYM-007.yml | 2 +- _data/courses/GYM-008.yml | 2 +- _data/courses/GYM-009.yml | 2 +- _data/courses/GYM-011.yml | 2 +- _data/courses/GYM-012.yml | 2 +- _data/courses/GYM-013.yml | 2 +- _data/courses/GYM-014.yml | 2 +- _data/courses/GYM-015.yml | 2 +- _data/courses/GYM-016.yml | 2 +- _data/courses/GYM-017.yml | 2 +- _data/courses/GYM-018.yml | 2 +- _data/courses/GYM-019.yml | 2 +- _data/courses/GYM-020.yml | 2 +- _data/courses/GYM-100.yml | 2 +- _data/courses/GYM-101.yml | 2 +- _data/courses/GYM-102.yml | 2 +- _data/courses/GYM-103.yml | 2 +- _data/courses/GYM-104.yml | 2 +- _data/courses/GYM-105.yml | 2 +- _data/courses/GYM-106.yml | 2 +- _data/courses/GYM-107.yml | 2 +- _data/courses/GYM-108.yml | 2 +- _data/courses/GYM-109.yml | 2 +- _data/take5/GYM-5001.yml | 2 +- _data/take5/GYM-5002.yml | 2 +- _data/take5/GYM-5003.yml | 2 +- _data/take5/GYM-5004.yml | 2 +- _data/take5/GYM-5005.yml | 2 +- _data/take5/GYM-5006.yml | 2 +- _data/take5/GYM-5007.yml | 2 +- _data/take5/GYM-5008.yml | 2 +- _data/take5/GYM-5009.yml | 2 +- _data/take5/GYM-5010.yml | 2 +- _data/take5/GYM-5011.yml | 2 +- _data/take5/GYM-5012.yml | 2 +- _data/take5/GYM-5013.yml | 2 +- _data/take5/GYM-5014.yml | 2 +- _data/take5/GYM-5015.yml | 2 +- _data/take5/GYM-5016.yml | 2 +- _data/take5/GYM-5017.yml | 2 +- _data/take5/GYM-5018.yml | 2 +- _data/take5/GYM-5019.yml | 2 +- _data/take5/GYM-5020.yml | 2 +- _data/take5/GYM-5021.yml | 2 +- _data/take5/GYM-5022.yml | 2 +- _data/take5/GYM-5023.yml | 2 +- _data/take5/GYM-5024.yml | 2 +- _data/take5/GYM-5025.yml | 2 +- _data/take5/GYM-5026.yml | 2 +- _data/take5/GYM-5027.yml | 2 +- _data/take5/GYM-5028.yml | 2 +- _data/take5/GYM-5029.yml | 2 +- _data/take5/GYM-5030.yml | 2 +- _data/take5/GYM-5031.yml | 2 +- _data/take5/GYM-5032.yml | 2 +- _data/take5/GYM-5033.yml | 2 +- _data/take5/GYM-5034.yml | 2 +- _data/take5/GYM-5035.yml | 2 +- _data/take5/GYM-5036.yml | 2 +- _data/take5/GYM-5037.yml | 2 +- _data/take5/GYM-5038.yml | 2 +- _data/take5/GYM-5039.yml | 2 +- _data/take5/GYM-5040.yml | 2 +- _data/take5/GYM-5041.yml | 2 +- _data/take5/GYM-5042.yml | 2 +- _data/take5/GYM-5043.yml | 2 +- _data/take5/GYM-5044.yml | 2 +- _data/take5/GYM-5045.yml | 2 +- _data/take5/GYM-5046.yml | 2 +- _data/take5/GYM-5047.yml | 2 +- _data/take5/GYM-5048.yml | 2 +- _data/take5/GYM-5049.yml | 2 +- _data/take5/GYM-5050.yml | 2 +- _data/take5/GYM-5051.yml | 2 +- _data/take5/GYM-5052.yml | 2 +- _data/take5/GYM-5053.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- .../web0001-designing-for-understanding.yml | 2 +- .../webinars/web0002-designing-for-real-people.yml | 2 +- .../web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- .../web0005-state-of-responsive-web-design.yml | 2 +- .../web0006-keeping-up-with-javascript.yml | 2 +- .../web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- .../web0013-decade-of-responsive-web-design.yml | 2 +- _data/workshops/GYM-700.yml | 2 +- _includes/heros/hero-take5-featured.html | 2 +- _includes/home/featured-courses.html | 4 ++-- _includes/partials/meta/logic-courses.html | 2 +- _includes/partials/meta/logic-take5.html | 2 +- _includes/partials/meta/logic-webinars.html | 4 ++-- _includes/partials/meta/logic.html | 4 ++-- _includes/take5/recommended-content.html | 14 +++++++------- _layouts/take5-raw.html | 6 +++--- _layouts/webinar.html | 2 +- courses/full/GYM-100/meta.md | 2 +- courses/full/GYM-101/meta.md | 2 +- courses/full/GYM-102/meta.md | 2 +- courses/full/GYM-103/meta.md | 2 +- courses/full/GYM-104/meta.md | 2 +- courses/full/GYM-105/meta.md | 2 +- courses/full/GYM-106/meta.md | 2 +- courses/full/GYM-107/meta.md | 2 +- courses/full/GYM-108/meta.md | 2 +- courses/full/GYM-109/meta.md | 2 +- courses/full/course-list-recent.html | 12 ++++++------ courses/gym-shorts/GYM-001/meta.md | 2 +- courses/gym-shorts/GYM-002/meta.md | 2 +- courses/gym-shorts/GYM-003/meta.md | 2 +- courses/gym-shorts/GYM-004/meta.md | 2 +- courses/gym-shorts/GYM-005/meta.md | 2 +- courses/gym-shorts/GYM-006/meta.md | 2 +- courses/gym-shorts/GYM-007/meta.md | 2 +- courses/gym-shorts/GYM-008/meta.md | 2 +- courses/gym-shorts/GYM-009/meta.md | 2 +- courses/gym-shorts/GYM-011/meta.md | 2 +- courses/gym-shorts/GYM-012/meta.md | 2 +- courses/gym-shorts/GYM-013/meta.md | 2 +- courses/gym-shorts/GYM-014/meta.md | 2 +- courses/gym-shorts/GYM-015/meta.md | 2 +- courses/gym-shorts/GYM-016/meta.md | 2 +- courses/gym-shorts/GYM-017/meta.md | 2 +- courses/gym-shorts/GYM-018/meta.md | 2 +- courses/gym-shorts/GYM-019/meta.md | 2 +- courses/gym-shorts/GYM-020/meta.md | 2 +- courses/gym-shorts/course-list-recent.html | 12 ++++++------ courses/take5/GYM-5001/index.md | 2 +- courses/take5/GYM-5001/meta.md | 2 +- courses/take5/GYM-5002/index.md | 2 +- courses/take5/GYM-5002/meta.md | 2 +- courses/take5/GYM-5003/index.md | 2 +- courses/take5/GYM-5003/meta.md | 2 +- courses/take5/GYM-5004/index.md | 2 +- courses/take5/GYM-5004/meta.md | 2 +- courses/take5/GYM-5005/index.md | 2 +- courses/take5/GYM-5005/meta.md | 2 +- courses/take5/GYM-5006/index.md | 2 +- courses/take5/GYM-5006/meta.md | 2 +- courses/take5/GYM-5007/index.md | 2 +- courses/take5/GYM-5007/meta.md | 2 +- courses/take5/GYM-5008/index.md | 2 +- courses/take5/GYM-5008/meta.md | 2 +- courses/take5/GYM-5009/index.md | 2 +- courses/take5/GYM-5009/meta.md | 2 +- courses/take5/GYM-5010/index.md | 2 +- courses/take5/GYM-5010/meta.md | 2 +- courses/take5/GYM-5011/index.md | 2 +- courses/take5/GYM-5011/meta.md | 2 +- courses/take5/GYM-5012/index.md | 2 +- courses/take5/GYM-5012/meta.md | 2 +- courses/take5/GYM-5013/index.md | 2 +- courses/take5/GYM-5013/meta.md | 2 +- courses/take5/GYM-5014/index.md | 2 +- courses/take5/GYM-5014/meta.md | 2 +- courses/take5/GYM-5015/index.md | 2 +- courses/take5/GYM-5015/meta.md | 2 +- courses/take5/GYM-5016/index.md | 2 +- courses/take5/GYM-5016/meta.md | 2 +- courses/take5/GYM-5017/index.md | 2 +- courses/take5/GYM-5017/meta.md | 2 +- courses/take5/GYM-5018/index.md | 2 +- courses/take5/GYM-5018/meta.md | 2 +- courses/take5/GYM-5019/index.md | 2 +- courses/take5/GYM-5019/meta.md | 2 +- courses/take5/GYM-5020/index.md | 2 +- courses/take5/GYM-5020/meta.md | 2 +- courses/take5/GYM-5021/index.md | 2 +- courses/take5/GYM-5021/meta.md | 2 +- courses/take5/GYM-5022/index.md | 2 +- courses/take5/GYM-5022/meta.md | 2 +- courses/take5/GYM-5023/index.md | 2 +- courses/take5/GYM-5023/meta.md | 2 +- courses/take5/GYM-5024/index.md | 2 +- courses/take5/GYM-5024/meta.md | 2 +- courses/take5/GYM-5025/index.md | 2 +- courses/take5/GYM-5025/meta.md | 2 +- courses/take5/GYM-5026/index.md | 2 +- courses/take5/GYM-5026/meta.md | 2 +- courses/take5/GYM-5027/index.md | 2 +- courses/take5/GYM-5027/meta.md | 2 +- courses/take5/GYM-5028/index.md | 2 +- courses/take5/GYM-5028/meta.md | 2 +- courses/take5/GYM-5029/index.md | 2 +- courses/take5/GYM-5029/meta.md | 2 +- courses/take5/GYM-5030/index.md | 2 +- courses/take5/GYM-5030/meta.md | 2 +- courses/take5/GYM-5031/index.md | 2 +- courses/take5/GYM-5031/meta.md | 2 +- courses/take5/GYM-5032/index.md | 2 +- courses/take5/GYM-5032/meta.md | 2 +- courses/take5/GYM-5033/index.md | 2 +- courses/take5/GYM-5033/meta.md | 2 +- courses/take5/GYM-5034/index.md | 2 +- courses/take5/GYM-5034/meta.md | 2 +- courses/take5/GYM-5035/index.md | 2 +- courses/take5/GYM-5035/meta.md | 2 +- courses/take5/GYM-5036/index.md | 2 +- courses/take5/GYM-5036/meta.md | 2 +- courses/take5/GYM-5037/index.md | 2 +- courses/take5/GYM-5037/meta.md | 2 +- courses/take5/GYM-5038/index.md | 2 +- courses/take5/GYM-5038/meta.md | 2 +- courses/take5/GYM-5039/index.md | 2 +- courses/take5/GYM-5039/meta.md | 2 +- courses/take5/GYM-5040/index.md | 2 +- courses/take5/GYM-5040/meta.md | 2 +- courses/take5/GYM-5041/index.md | 2 +- courses/take5/GYM-5041/meta.md | 2 +- courses/take5/GYM-5042/index.md | 2 +- courses/take5/GYM-5042/meta.md | 2 +- courses/take5/GYM-5043/index.md | 2 +- courses/take5/GYM-5043/meta.md | 2 +- courses/take5/GYM-5044/index.md | 2 +- courses/take5/GYM-5044/meta.md | 2 +- courses/take5/GYM-5045/index.md | 2 +- courses/take5/GYM-5045/meta.md | 2 +- courses/take5/GYM-5046/index.md | 2 +- courses/take5/GYM-5046/meta.md | 2 +- courses/take5/GYM-5047/index.md | 2 +- courses/take5/GYM-5047/meta.md | 2 +- courses/take5/GYM-5048/index.md | 2 +- courses/take5/GYM-5048/meta.md | 2 +- courses/take5/GYM-5049/index.md | 2 +- courses/take5/GYM-5049/meta.md | 2 +- courses/take5/GYM-5050/index.md | 2 +- courses/take5/GYM-5050/meta.md | 2 +- courses/take5/GYM-5051/index.md | 2 +- courses/take5/GYM-5051/meta.md | 2 +- courses/take5/GYM-5052/index.md | 2 +- courses/take5/GYM-5052/meta.md | 2 +- courses/take5/GYM-5053/index.md | 2 +- courses/take5/GYM-5053/meta.md | 2 +- courses/take5/GYM-5056/index.md | 2 +- courses/take5/GYM-5056/meta.md | 2 +- courses/take5/course-list-recent.html | 8 ++++---- courses/take5/index.html | 12 ++++++------ courses/workshops/GYM-700/meta.md | 2 +- courses/workshops/course-list-recent.html | 12 ++++++------ docs/README.md | 8 ++++---- feeds/_partials/courses.html | 2 +- feeds/_partials/tutorials.html | 2 +- feeds/_partials/webinars.html | 2 +- feeds/featured-courses.html | 4 ++-- feeds/webinars.json | 4 ++-- partials/final-exam-modal.html | 2 +- take5/catalog-blitz.html | 14 +++++++------- take5/catalog-debug.html | 2 +- tests/catalog/full-lister.html | 10 +++++----- tests/catalog/metas.html | 2 +- tests/catalog/test-lister.html | 2 +- tests/featurer.html | 4 ++-- tests/take5/take5-content-test.html | 6 +++--- tests/take5/take5-date-lister.html | 4 ++-- tests/take5/take5-lister.html | 2 +- tests/take5/take5-publish-status.html | 4 ++-- tests/take5/take5-url-test.html | 4 ++-- tests/webinars/metas.html | 2 +- tests/webinars/webinars-test.html | 2 +- webinars/index.html | 2 +- webinars/web0001/index.md | 2 +- webinars/web0001/meta.md | 2 +- webinars/web0002/index.md | 2 +- webinars/web0002/meta.md | 2 +- webinars/web0003/index.md | 2 +- webinars/web0003/meta.md | 2 +- webinars/web0004/index.md | 2 +- webinars/web0004/meta.md | 2 +- webinars/web0005/index.md | 2 +- webinars/web0005/meta.md | 2 +- webinars/web0006/index.md | 2 +- webinars/web0006/meta.md | 2 +- webinars/web0007/index.md | 2 +- webinars/web0007/meta.md | 2 +- webinars/web0008/index.md | 2 +- webinars/web0008/meta.md | 2 +- webinars/web0009/index.md | 2 +- webinars/web0009/meta.md | 2 +- webinars/web0010/index.md | 2 +- webinars/web0010/meta.md | 2 +- webinars/web0011/index.md | 2 +- webinars/web0011/meta.md | 2 +- webinars/web0012/index.md | 2 +- webinars/web0012/meta.md | 2 +- webinars/web0013/index.md | 2 +- webinars/web0013/meta.md | 2 +- 296 files changed, 351 insertions(+), 351 deletions(-) diff --git a/_data/courses/GYM-001.yml b/_data/courses/GYM-001.yml index 38231dc98..f2d5e46e1 100644 --- a/_data/courses/GYM-001.yml +++ b/_data/courses/GYM-001.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-001 +id: GYM-001 title: "Defeating Busy" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-002.yml b/_data/courses/GYM-002.yml index 1b8bdbe0f..16d51361e 100644 --- a/_data/courses/GYM-002.yml +++ b/_data/courses/GYM-002.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-002 +id: GYM-002 title: "Introducing Node.js" date: 2022-05-27T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-003.yml b/_data/courses/GYM-003.yml index a434e24a9..3d59b4d1c 100644 --- a/_data/courses/GYM-003.yml +++ b/_data/courses/GYM-003.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-003 +id: GYM-003 title: "Grid Layout in Bootstrap 3" date: 2022-05-26T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-004.yml b/_data/courses/GYM-004.yml index 8f421d7b7..6c035c65a 100644 --- a/_data/courses/GYM-004.yml +++ b/_data/courses/GYM-004.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-004 +id: GYM-004 title: "Creating A WordPress Theme" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-005.yml b/_data/courses/GYM-005.yml index b89ff699a..f815ba847 100644 --- a/_data/courses/GYM-005.yml +++ b/_data/courses/GYM-005.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-005 +id: GYM-005 title: "Introducing Sketch for UX and UI" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-006.yml b/_data/courses/GYM-006.yml index 6f1875a09..a13ebb741 100644 --- a/_data/courses/GYM-006.yml +++ b/_data/courses/GYM-006.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-006 +id: GYM-006 title: "Introduction to Git and GitHub" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-007.yml b/_data/courses/GYM-007.yml index b43a941ea..96f6b5c77 100644 --- a/_data/courses/GYM-007.yml +++ b/_data/courses/GYM-007.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-007 +id: GYM-007 title: "Structuring and Organizing HTML5 Forms" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-008.yml b/_data/courses/GYM-008.yml index eda5f49fa..c7a3774c2 100644 --- a/_data/courses/GYM-008.yml +++ b/_data/courses/GYM-008.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-008 +id: GYM-008 title: "Advanced Rapid Prototyping with Axure" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-009.yml b/_data/courses/GYM-009.yml index dfb13f8a1..5669d0ed7 100644 --- a/_data/courses/GYM-009.yml +++ b/_data/courses/GYM-009.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-009 +id: GYM-009 title: "Creating A Drupal 8 Theme" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-011.yml b/_data/courses/GYM-011.yml index 1818253e4..0c36a3f65 100644 --- a/_data/courses/GYM-011.yml +++ b/_data/courses/GYM-011.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-011 +id: GYM-011 title: "Build Better Websites With Chrome Developer Tools" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-012.yml b/_data/courses/GYM-012.yml index 9d70e00db..d0a02da73 100644 --- a/_data/courses/GYM-012.yml +++ b/_data/courses/GYM-012.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-012 +id: GYM-012 title: "Introduction to Node.js" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-013.yml b/_data/courses/GYM-013.yml index 88b867f34..98bac3b8b 100644 --- a/_data/courses/GYM-013.yml +++ b/_data/courses/GYM-013.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-013 +id: GYM-013 title: "3D Modeling for Virtual Reality Creation" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-014.yml b/_data/courses/GYM-014.yml index 6ab5489af..7b9b03869 100644 --- a/_data/courses/GYM-014.yml +++ b/_data/courses/GYM-014.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-014 +id: GYM-014 title: "Working with Atomic Design and Pattern Lab" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-015.yml b/_data/courses/GYM-015.yml index 4918c1f78..992215c75 100644 --- a/_data/courses/GYM-015.yml +++ b/_data/courses/GYM-015.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-015 +id: GYM-015 title: "Prototyping for Digital Products and Websites" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-016.yml b/_data/courses/GYM-016.yml index 9ebec56cc..1d64c9d19 100644 --- a/_data/courses/GYM-016.yml +++ b/_data/courses/GYM-016.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-016 +id: GYM-016 title: "Designing Accessible and Responsive Websites" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-017.yml b/_data/courses/GYM-017.yml index 41a2cf57e..5dc2a090d 100644 --- a/_data/courses/GYM-017.yml +++ b/_data/courses/GYM-017.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-017 +id: GYM-017 title: "Design Systems for Everyone" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-018.yml b/_data/courses/GYM-018.yml index 328ae902c..351b47941 100644 --- a/_data/courses/GYM-018.yml +++ b/_data/courses/GYM-018.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-018 +id: GYM-018 title: "Design Systems for Designers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-019.yml b/_data/courses/GYM-019.yml index c94ed63c5..6f775ba54 100644 --- a/_data/courses/GYM-019.yml +++ b/_data/courses/GYM-019.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-019 +id: GYM-019 title: "Design Systems for Developers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-020.yml b/_data/courses/GYM-020.yml index 0cf20bf7b..b55da53e5 100644 --- a/_data/courses/GYM-020.yml +++ b/_data/courses/GYM-020.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-020 +id: GYM-020 title: "Design Systems for Product Managers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-100.yml b/_data/courses/GYM-100.yml index 53fcba098..d1a30feee 100644 --- a/_data/courses/GYM-100.yml +++ b/_data/courses/GYM-100.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-100 +id: GYM-100 title: "Coding for Designers" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-101.yml b/_data/courses/GYM-101.yml index d5b8623b9..152451ddf 100644 --- a/_data/courses/GYM-101.yml +++ b/_data/courses/GYM-101.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-101 +id: GYM-101 title: "Responsive Web Design" date: 2022-05-27T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-102.yml b/_data/courses/GYM-102.yml index 558cf63cb..530c52c66 100644 --- a/_data/courses/GYM-102.yml +++ b/_data/courses/GYM-102.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-102 +id: GYM-102 title: "jQuery Building Blocks" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-103.yml b/_data/courses/GYM-103.yml index 8f99b4c0f..4d2099809 100644 --- a/_data/courses/GYM-103.yml +++ b/_data/courses/GYM-103.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-103 +id: GYM-103 title: "UX Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-104.yml b/_data/courses/GYM-104.yml index 0c8af7901..afa8b387a 100644 --- a/_data/courses/GYM-104.yml +++ b/_data/courses/GYM-104.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-104 +id: GYM-104 title: "JavaScript Foundations" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-105.yml b/_data/courses/GYM-105.yml index 0280f3d56..7d511ec0e 100644 --- a/_data/courses/GYM-105.yml +++ b/_data/courses/GYM-105.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-105 +id: GYM-105 title: "Writing for Web & Mobile" date: 2022-05-26T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-106.yml b/_data/courses/GYM-106.yml index ed8b4cc6d..6db263fba 100644 --- a/_data/courses/GYM-106.yml +++ b/_data/courses/GYM-106.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-106 +id: GYM-106 title: "Information Design & Visualization Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-107.yml b/_data/courses/GYM-107.yml index 5eed4924b..e0b282ca3 100644 --- a/_data/courses/GYM-107.yml +++ b/_data/courses/GYM-107.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-107 +id: GYM-107 title: "Modern Web Design" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-108.yml b/_data/courses/GYM-108.yml index a6d0b8562..d4e4a18c5 100644 --- a/_data/courses/GYM-108.yml +++ b/_data/courses/GYM-108.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-108 +id: GYM-108 title: "JavaScript and jQuery Survival Guide" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-109.yml b/_data/courses/GYM-109.yml index 06ceca68f..399287c04 100644 --- a/_data/courses/GYM-109.yml +++ b/_data/courses/GYM-109.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-109 +id: GYM-109 title: "Responsive Web Design Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/take5/GYM-5001.yml b/_data/take5/GYM-5001.yml index 2bf5b81b6..4120de075 100644 --- a/_data/take5/GYM-5001.yml +++ b/_data/take5/GYM-5001.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5001 +id: GYM-5001 title: "Making a CSS Parallax Effect" date: 2019-10-28T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5002.yml b/_data/take5/GYM-5002.yml index 3afe2dd97..17fea333b 100644 --- a/_data/take5/GYM-5002.yml +++ b/_data/take5/GYM-5002.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5002 +id: GYM-5002 title: "Creating a CSS Knockout Text Effect" date: 2019-10-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5003.yml b/_data/take5/GYM-5003.yml index 87819a57e..893e983e2 100644 --- a/_data/take5/GYM-5003.yml +++ b/_data/take5/GYM-5003.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5003 +id: GYM-5003 title: "Adding a CSS Gradient Overlay to an Image" date: 2019-10-30T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5004.yml b/_data/take5/GYM-5004.yml index 7b43511e1..1fb24c452 100644 --- a/_data/take5/GYM-5004.yml +++ b/_data/take5/GYM-5004.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5004 +id: GYM-5004 title: "Working with CSS Feature Queries" date: 2019-10-31T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5005.yml b/_data/take5/GYM-5005.yml index abc1f2a33..81846e55d 100644 --- a/_data/take5/GYM-5005.yml +++ b/_data/take5/GYM-5005.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5005 +id: GYM-5005 title: "Creating a Duotone with CSS" date: 2019-11-01T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5006.yml b/_data/take5/GYM-5006.yml index 93d925bc4..3ff98ac2a 100644 --- a/_data/take5/GYM-5006.yml +++ b/_data/take5/GYM-5006.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5006 +id: GYM-5006 title: "Leading a Card Sorting Session" date: 2019-11-18T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5007.yml b/_data/take5/GYM-5007.yml index 73504011b..7fe98ca46 100644 --- a/_data/take5/GYM-5007.yml +++ b/_data/take5/GYM-5007.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5007 +id: GYM-5007 title: "Conducting Customer Interviews" date: 2019-11-19T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5008.yml b/_data/take5/GYM-5008.yml index 95b3682ee..a6d2723e3 100644 --- a/_data/take5/GYM-5008.yml +++ b/_data/take5/GYM-5008.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5008 +id: GYM-5008 title: "Writing Effective Survey Questions" date: 2019-11-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5009.yml b/_data/take5/GYM-5009.yml index 80f64e1f5..e509880bd 100644 --- a/_data/take5/GYM-5009.yml +++ b/_data/take5/GYM-5009.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5009 +id: GYM-5009 title: "Leading Your First Usability Test" date: 2019-11-21T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5010.yml b/_data/take5/GYM-5010.yml index 3c2fb3b5c..0c89f7261 100644 --- a/_data/take5/GYM-5010.yml +++ b/_data/take5/GYM-5010.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5010 +id: GYM-5010 title: "Using the KJ Method" date: 2019-11-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5011.yml b/_data/take5/GYM-5011.yml index 6e6701298..fecd338e5 100644 --- a/_data/take5/GYM-5011.yml +++ b/_data/take5/GYM-5011.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5011 +id: GYM-5011 title: "Using Smart Layout in Sketch" date: 2019-11-04T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5012.yml b/_data/take5/GYM-5012.yml index bffc0512c..7e55e232a 100644 --- a/_data/take5/GYM-5012.yml +++ b/_data/take5/GYM-5012.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5012 +id: GYM-5012 title: "Prototyping in the Browser with CSS Grid Layout" date: 2019-11-05T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5013.yml b/_data/take5/GYM-5013.yml index 2652909fb..861ec310b 100644 --- a/_data/take5/GYM-5013.yml +++ b/_data/take5/GYM-5013.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5013 +id: GYM-5013 title: "Working with the Timeline in InVision Studio" date: 2019-11-06T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5014.yml b/_data/take5/GYM-5014.yml index 638f50b34..443158730 100644 --- a/_data/take5/GYM-5014.yml +++ b/_data/take5/GYM-5014.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5014 +id: GYM-5014 title: "Using Auto-Animate in Adobe XD" date: 2019-11-07T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5015.yml b/_data/take5/GYM-5015.yml index e121384fb..fb3a19e49 100644 --- a/_data/take5/GYM-5015.yml +++ b/_data/take5/GYM-5015.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5015 +id: GYM-5015 title: "Creating Advanced Animations in Figma" date: 2019-11-08T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5016.yml b/_data/take5/GYM-5016.yml index 93256aef9..15cec3fac 100644 --- a/_data/take5/GYM-5016.yml +++ b/_data/take5/GYM-5016.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5016 +id: GYM-5016 title: "Storytelling for Designers" date: 2019-11-11T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5017.yml b/_data/take5/GYM-5017.yml index bad5a88d1..bdd2f2e86 100644 --- a/_data/take5/GYM-5017.yml +++ b/_data/take5/GYM-5017.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5017 +id: GYM-5017 title: "How to Tell the Story of a Mid-Career Pivot" date: 2019-11-12T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5018.yml b/_data/take5/GYM-5018.yml index ff9040595..1a7d3f56c 100644 --- a/_data/take5/GYM-5018.yml +++ b/_data/take5/GYM-5018.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5018 +id: GYM-5018 title: "Crafting Your Story" date: 2019-11-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5019.yml b/_data/take5/GYM-5019.yml index 0353b952a..2eebb86fd 100644 --- a/_data/take5/GYM-5019.yml +++ b/_data/take5/GYM-5019.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5019 +id: GYM-5019 title: "Self-Promotion Through Your Online Presence" date: 2019-11-14T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5020.yml b/_data/take5/GYM-5020.yml index 9306674fc..377f2f459 100644 --- a/_data/take5/GYM-5020.yml +++ b/_data/take5/GYM-5020.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5020 +id: GYM-5020 title: "Knowing Your Audience" date: 2019-11-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5021.yml b/_data/take5/GYM-5021.yml index 3bf634a3e..6c2e63a96 100644 --- a/_data/take5/GYM-5021.yml +++ b/_data/take5/GYM-5021.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5021 +id: GYM-5021 title: "Using CSS Generated Content for Links" date: 2019-12-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5022.yml b/_data/take5/GYM-5022.yml index 2afca426b..fbce47301 100644 --- a/_data/take5/GYM-5022.yml +++ b/_data/take5/GYM-5022.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5022 +id: GYM-5022 title: "Creating a Pixel Perfect Icon in Sketch" date: 2019-12-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5023.yml b/_data/take5/GYM-5023.yml index c3524c417..83741f753 100644 --- a/_data/take5/GYM-5023.yml +++ b/_data/take5/GYM-5023.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5023 +id: GYM-5023 title: "Creating A Harmonious Color Scheme with HSL" date: 2020-01-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5024.yml b/_data/take5/GYM-5024.yml index b75b37cf3..d56aaa14d 100644 --- a/_data/take5/GYM-5024.yml +++ b/_data/take5/GYM-5024.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5024 +id: GYM-5024 title: "Writing CSS Media Queries For Responsive Design" date: 2020-01-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5025.yml b/_data/take5/GYM-5025.yml index 84a89d709..a84c69bcc 100644 --- a/_data/take5/GYM-5025.yml +++ b/_data/take5/GYM-5025.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5025 +id: GYM-5025 title: "Getting Started with CSS Variables" date: 2020-01-27T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5026.yml b/_data/take5/GYM-5026.yml index 319140f49..69068e04d 100644 --- a/_data/take5/GYM-5026.yml +++ b/_data/take5/GYM-5026.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5026 +id: GYM-5026 title: "Publishing Your First GitHub Pages Website" date: 2020-02-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5027.yml b/_data/take5/GYM-5027.yml index 97239bc75..c4d1e851f 100644 --- a/_data/take5/GYM-5027.yml +++ b/_data/take5/GYM-5027.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5027 +id: GYM-5027 title: "Managing Your Time Like a Pro" date: 2020-02-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5028.yml b/_data/take5/GYM-5028.yml index 92853feb4..c40da9eb3 100644 --- a/_data/take5/GYM-5028.yml +++ b/_data/take5/GYM-5028.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5028 +id: GYM-5028 title: "Adding a Dark Mode Theme to Your Website" date: 2020-02-17T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5029.yml b/_data/take5/GYM-5029.yml index addb2715c..478077d99 100644 --- a/_data/take5/GYM-5029.yml +++ b/_data/take5/GYM-5029.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5029 +id: GYM-5029 title: "Animating Microinteractions with Figma" date: 2020-02-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5030.yml b/_data/take5/GYM-5030.yml index 9c3e770cd..5d949f0c0 100644 --- a/_data/take5/GYM-5030.yml +++ b/_data/take5/GYM-5030.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5030 +id: GYM-5030 title: "Working with Overlays in Figma" date: 2020-03-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5031.yml b/_data/take5/GYM-5031.yml index 921d4c787..e9ffa2f2d 100644 --- a/_data/take5/GYM-5031.yml +++ b/_data/take5/GYM-5031.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5031 +id: GYM-5031 title: "Creating an Interactive Chart for the Web" date: 2020-03-31T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5032.yml b/_data/take5/GYM-5032.yml index 1a0c58950..3710305fe 100644 --- a/_data/take5/GYM-5032.yml +++ b/_data/take5/GYM-5032.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5032 +id: GYM-5032 title: "Introduction to Screen Readers Using VoiceOver" date: 2020-06-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5033.yml b/_data/take5/GYM-5033.yml index b5bca22f1..c01443634 100644 --- a/_data/take5/GYM-5033.yml +++ b/_data/take5/GYM-5033.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5033 +id: GYM-5033 title: "Designing Beautiful Focus States" date: 2020-06-23T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5034.yml b/_data/take5/GYM-5034.yml index 0144d597d..5c9173542 100644 --- a/_data/take5/GYM-5034.yml +++ b/_data/take5/GYM-5034.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5034 +id: GYM-5034 title: "Flexible and Accessible Typesetting" date: 2020-06-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5035.yml b/_data/take5/GYM-5035.yml index d82fbc629..6c76d6f3b 100644 --- a/_data/take5/GYM-5035.yml +++ b/_data/take5/GYM-5035.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5035 +id: GYM-5035 title: "Responsively Designing with Viewport Units" date: 2020-06-25T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5036.yml b/_data/take5/GYM-5036.yml index 560b2cb1b..4e7431624 100644 --- a/_data/take5/GYM-5036.yml +++ b/_data/take5/GYM-5036.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5036 +id: GYM-5036 title: "Creating Beautiful and Accessible Drop Caps" date: 2020-06-26T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5037.yml b/_data/take5/GYM-5037.yml index 8e0a1e8e9..81cf108a8 100644 --- a/_data/take5/GYM-5037.yml +++ b/_data/take5/GYM-5037.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5037 +id: GYM-5037 title: "Understanding Document Structure Accessibility" date: 2020-09-02T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5038.yml b/_data/take5/GYM-5038.yml index f5840a766..efd4a6390 100644 --- a/_data/take5/GYM-5038.yml +++ b/_data/take5/GYM-5038.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5038 +id: GYM-5038 title: "Making Headings and Lists More Accessible" date: 2020-09-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5039.yml b/_data/take5/GYM-5039.yml index 943406d4d..f9e83f543 100644 --- a/_data/take5/GYM-5039.yml +++ b/_data/take5/GYM-5039.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5039 +id: GYM-5039 title: "Designing Accessible Data Tables" date: 2020-09-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5040.yml b/_data/take5/GYM-5040.yml index 17590e600..4360264e5 100644 --- a/_data/take5/GYM-5040.yml +++ b/_data/take5/GYM-5040.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5040 +id: GYM-5040 title: "Improving Image Accessibility with Alt Text" date: 2020-09-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5041.yml b/_data/take5/GYM-5041.yml index 1ebf9245a..1028834b4 100644 --- a/_data/take5/GYM-5041.yml +++ b/_data/take5/GYM-5041.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5041 +id: GYM-5041 title: "Writing Effective and Accessible Alt Text" date: 2020-10-06T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5042.yml b/_data/take5/GYM-5042.yml index 77ed9e66d..180dc9777 100644 --- a/_data/take5/GYM-5042.yml +++ b/_data/take5/GYM-5042.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5042 +id: GYM-5042 title: "Understanding the Role of Color in Accessibility" date: 2020-10-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5043.yml b/_data/take5/GYM-5043.yml index d9676f7a1..49c63f11f 100644 --- a/_data/take5/GYM-5043.yml +++ b/_data/take5/GYM-5043.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5043 +id: GYM-5043 title: "Improving Accessibility with Color Contrast" date: 2020-10-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5044.yml b/_data/take5/GYM-5044.yml index a5db5829f..980342772 100644 --- a/_data/take5/GYM-5044.yml +++ b/_data/take5/GYM-5044.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5044 +id: GYM-5044 title: "Designing Accessible Forms for Everyone" date: 2020-10-27T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5045.yml b/_data/take5/GYM-5045.yml index abc61232d..2afe1e75e 100644 --- a/_data/take5/GYM-5045.yml +++ b/_data/take5/GYM-5045.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5045 +id: GYM-5045 title: "Improving Form Usability and Accessibility" date: 2020-11-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5046.yml b/_data/take5/GYM-5046.yml index fde913c2e..8b0acf720 100644 --- a/_data/take5/GYM-5046.yml +++ b/_data/take5/GYM-5046.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5046 +id: GYM-5046 title: "Creating Accessible Video and Audio Content" date: 2020-11-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5047.yml b/_data/take5/GYM-5047.yml index c54fc2255..513b9b4a3 100644 --- a/_data/take5/GYM-5047.yml +++ b/_data/take5/GYM-5047.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5047 +id: GYM-5047 title: "Creating Accessible Web Animations" date: 2020-11-17T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5048.yml b/_data/take5/GYM-5048.yml index 9996c2f55..62b433fd4 100644 --- a/_data/take5/GYM-5048.yml +++ b/_data/take5/GYM-5048.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5048 +id: GYM-5048 title: "Using Motion and Web Animation Responsibly" date: 2020-11-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5049.yml b/_data/take5/GYM-5049.yml index fbd43781a..941a9d998 100644 --- a/_data/take5/GYM-5049.yml +++ b/_data/take5/GYM-5049.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5049 +id: GYM-5049 title: "Creating Variants in Figma" date: 2021-06-01T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5050.yml b/_data/take5/GYM-5050.yml index 8ff8b9b8c..f73ab5d34 100644 --- a/_data/take5/GYM-5050.yml +++ b/_data/take5/GYM-5050.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5050 +id: GYM-5050 title: "Working with Auto Layout in Figma" date: 2021-06-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5051.yml b/_data/take5/GYM-5051.yml index 45aa47307..f9221a305 100644 --- a/_data/take5/GYM-5051.yml +++ b/_data/take5/GYM-5051.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5051 +id: GYM-5051 title: "Advanced Auto Layout in Figma" date: 2021-06-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5052.yml b/_data/take5/GYM-5052.yml index adb53cb69..2287f57e1 100644 --- a/_data/take5/GYM-5052.yml +++ b/_data/take5/GYM-5052.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5052 +id: GYM-5052 title: "Making a Great First Impression with Your Portfolio" date: 2022-08-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5053.yml b/_data/take5/GYM-5053.yml index 40e216ceb..d1556383f 100644 --- a/_data/take5/GYM-5053.yml +++ b/_data/take5/GYM-5053.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5053 +id: GYM-5053 title: "Crafting a Concise About Page" date: 2022-08-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index 6b4ca50af..4981f4ac9 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5056 +id: GYM-5056 title: "Taking Your Portfolio Case Studies to the Next Level" date: 2022-12-05T00:00:00-04:00 course_type: take5 diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index d4493edfb..ba0d41cb9 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -1,5 +1,5 @@ --- -event_id: web0001-designing-for-understanding +id: web0001-designing-for-understanding title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index c8885e78c..eebdabc27 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -1,5 +1,5 @@ --- -event_id: web0002-designing-for-real-people +id: web0002-designing-for-real-people title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index 8a061b7fc..31370a8d1 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -1,5 +1,5 @@ --- -event_id: web0003-right-sizing-your-rapid-prototypes +id: web0003-right-sizing-your-rapid-prototypes title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index 20d4bbd81..93d707ca0 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -1,5 +1,5 @@ --- -event_id: web0004-web-design-is-hard +id: web0004-web-design-is-hard title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index 82ebf1780..3625a5a8f 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -1,5 +1,5 @@ --- -event_id: web0005-state-of-responsive-web-design +id: web0005-state-of-responsive-web-design title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index e47b4b704..af03dd8f6 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -1,5 +1,5 @@ --- -event_id: web0006-keeping-up-with-javascript +id: web0006-keeping-up-with-javascript title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 583f1fecd..3b53e7418 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -1,5 +1,5 @@ --- -event_id: web0007-design-systems-and-creativity +id: web0007-design-systems-and-creativity title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index 7cf1c358e..0deadaa7f 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -1,5 +1,5 @@ --- -event_id: web0008-rethinking-full-stack +id: web0008-rethinking-full-stack title: "Rethinking Full Stack:
        Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index 4705ee2d2..ba2e96efc 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -1,5 +1,5 @@ --- -event_id: web0009-future-of-web-layout +id: web0009-future-of-web-layout title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index dbd878b99..106ea2772 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -1,5 +1,5 @@ --- -event_id: web0010-planning-before-pixels +id: web0010-planning-before-pixels title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 3c90fe29a..f18314a48 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -1,5 +1,5 @@ --- -event_id: web0011-prototyping-as-process +id: web0011-prototyping-as-process title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index 2c1d74f51..098b6e782 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -1,5 +1,5 @@ --- -event_id: web0012-remote-work +id: web0012-remote-work title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index a8a3b2e5c..074a2d9eb 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -1,5 +1,5 @@ --- -event_id: web0013-decade-of-responsive-web-design +id: web0013-decade-of-responsive-web-design title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." diff --git a/_data/workshops/GYM-700.yml b/_data/workshops/GYM-700.yml index 5082e54c5..658463b88 100644 --- a/_data/workshops/GYM-700.yml +++ b/_data/workshops/GYM-700.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-007 +id: GYM-007 title: "Improving Your Portfolio" date: 2022-12-05T00:00:00-04:00 datetime: "December 5–9, Monday–Friday, 4–5 PM EST" diff --git a/_includes/heros/hero-take5-featured.html b/_includes/heros/hero-take5-featured.html index c2fe008c2..ac5a15498 100644 --- a/_includes/heros/hero-take5-featured.html +++ b/_includes/heros/hero-take5-featured.html @@ -4,7 +4,7 @@ {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.featured == true -%} - {%- assign hero_id = item.course_id | downcase -%} + {%- assign hero_id = item.id | downcase -%} {%- assign hero_topic = item.topic -%} {%- assign hero_title = item.title -%} {%- assign hero_instructor = item.instructor | prepend: "with " -%} diff --git a/_includes/home/featured-courses.html b/_includes/home/featured-courses.html index e893e0274..614320823 100644 --- a/_includes/home/featured-courses.html +++ b/_includes/home/featured-courses.html @@ -8,8 +8,8 @@
    • @@ -61,7 +61,7 @@

      {{ courses[featured.gym_shorts.promo_2.ID].description }}

    • @@ -95,7 +95,7 @@

      {{ courses[featured.gym_shorts.promo_3.ID].description }}

    • diff --git a/_includes/heros/hero-take5-featured.html b/_includes/heros/hero-take5-featured.html index bbf22c4e3..1037ec90a 100644 --- a/_includes/heros/hero-take5-featured.html +++ b/_includes/heros/hero-take5-featured.html @@ -40,7 +40,7 @@ {%- assign hero_art = hero_art -%} {%- else -%} - {%- assign hero_art = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" -%} + {%- assign hero_art = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAIctaEAOw==" -%} {%- endif -%} diff --git a/_includes/take5/recommended-content.html b/_includes/take5/recommended-content.html index 86531ce1c..98c072a98 100644 --- a/_includes/take5/recommended-content.html +++ b/_includes/take5/recommended-content.html @@ -212,7 +212,7 @@

    - +
    diff --git a/courses/index.html b/courses/index.html index 72441dd99..d5fbb1d5c 100644 --- a/courses/index.html +++ b/courses/index.html @@ -35,7 +35,7 @@

    {{ main.full_courses.format }}

    - {{ main.full_courses.hero_text }} {{ main.full_courses.hero_CTA }} + {{ main.full_courses.hero_text }} {{ main.full_courses.hero_cta }}

    @@ -99,7 +99,7 @@

    {{ main.gym_shorts.format }}

    - {{ main.gym_shorts.hero_text }} {{ main.gym_shorts.hero_CTA }} + {{ main.gym_shorts.hero_text }} {{ main.gym_shorts.hero_cta }}

    @@ -163,7 +163,7 @@

    {{ main.take5_tutorials.format }}

    - {{ main.take5_tutorials.hero_text }} {{ main.take5_tutorials.hero_CTA }} + {{ main.take5_tutorials.hero_text }} {{ main.take5_tutorials.hero_cta }}

    @@ -227,7 +227,7 @@

    {{ main.collections.format }}

    - {{ main.collections.hero_text }} {{ main.collections.hero_CTA }} + {{ main.collections.hero_text }} {{ main.collections.hero_cta }}

    diff --git a/feeds/_partials/bios.html b/feeds/_partials/bios.liquid similarity index 100% rename from feeds/_partials/bios.html rename to feeds/_partials/bios.liquid diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html deleted file mode 100644 index 481e74b30..000000000 --- a/feeds/_partials/courses.html +++ /dev/null @@ -1,10 +0,0 @@ -{%- assign list = site.data.courses | sort -%} -{%- for hash in list -%} - {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'id', 'id' -%} - {%- assign data = data | replace: 'course_type', 'type' -%} - {%- assign data = data | replace: 'img', 'img' -%} - {{data}} - {% unless forloop.last %},{% endunless %} -{%- endfor -%} diff --git a/feeds/_partials/courses.liquid b/feeds/_partials/courses.liquid new file mode 100644 index 000000000..e5b167d3c --- /dev/null +++ b/feeds/_partials/courses.liquid @@ -0,0 +1,6 @@ +{%- assign list = site.data.courses | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/pages.html b/feeds/_partials/pages.liquid similarity index 100% rename from feeds/_partials/pages.html rename to feeds/_partials/pages.liquid diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.liquid similarity index 100% rename from feeds/_partials/tutorials.html rename to feeds/_partials/tutorials.liquid diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.liquid similarity index 74% rename from feeds/_partials/webinars.html rename to feeds/_partials/webinars.liquid index 71415b320..cdb2f91f1 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.liquid @@ -1,11 +1,8 @@ {%- assign list = site.data.webinars | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} - {%- assign data = data | replace: 'title', 'title' -%} - {%- assign data = data | replace: 'id', 'id' -%} {%- assign data = data | replace: 'content_category', 'category' -%} {%- assign data = data | replace: 'video_id', 'video_id' -%} {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} diff --git a/feeds/bios.json b/feeds/bios.json index a8e6c9fbc..d0e93d073 100644 --- a/feeds/bios.json +++ b/feeds/bios.json @@ -8,5 +8,5 @@ permalink: /feeds/bios.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/bios.html -%} + {%-include_relative _partials/bios.liquid -%} ]} diff --git a/feeds/complete.json b/feeds/complete.json index ad9c951a2..e98300778 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -9,16 +9,16 @@ permalink: /feeds/complete.json "environment": "{{ jekyll.environment }}", "items": { "bios":[ - {%-include_relative _partials/bios.html -%} + {%-include_relative _partials/bios.liquid -%} ], "courses":[ - {%-include_relative _partials/courses.html -%} + {%-include_relative _partials/courses.liquid -%} ], "tutorials":[ - {%-include_relative _partials/tutorials.html -%} + {%-include_relative _partials/tutorials.liquid -%} ], "webinars":[ - {%-include_relative _partials/webinars.html -%} + {%-include_relative _partials/webinars.liquid -%} ] } } diff --git a/feeds/courses.json b/feeds/courses.json index 4a4864997..d12b66035 100644 --- a/feeds/courses.json +++ b/feeds/courses.json @@ -8,5 +8,5 @@ permalink: /feeds/courses.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/courses.html -%} + {%-include_relative _partials/courses.liquid -%} ]} diff --git a/feeds/tutorials.json b/feeds/tutorials.json index eb74c3c67..1bdf63a7f 100644 --- a/feeds/tutorials.json +++ b/feeds/tutorials.json @@ -8,5 +8,5 @@ permalink: /feeds/tutorials.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/tutorials.html -%} + {%-include_relative _partials/tutorials.liquid -%} ]} From dcb09ffdbf391fc4acb7eae8cd6883e27a574dcc Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 24 May 2023 10:18:27 -0400 Subject: [PATCH 12/67] use lowercase id --- _includes/courses/featured/full-courses.html | 42 ++++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/_includes/courses/featured/full-courses.html b/_includes/courses/featured/full-courses.html index b76497cb1..80328f901 100644 --- a/_includes/courses/featured/full-courses.html +++ b/_includes/courses/featured/full-courses.html @@ -7,8 +7,8 @@

    {{ featured.full_courses.promo_1.label }}

    @@ -16,17 +16,17 @@

    {{ featured.full_courses.promo_1.label }}

    - {{ courses[featured.full_courses.promo_1.ID].topic }} + {{ courses[featured.full_courses.promo_1.id].topic }}

    - - {{ courses[featured.full_courses.promo_1.ID].title }} + + {{ courses[featured.full_courses.promo_1.id].title }}

    -

    {{ courses[featured.full_courses.promo_1.ID].description }}

    +

    {{ courses[featured.full_courses.promo_1.id].description }}

    @@ -41,8 +41,8 @@

    {{ featured.full_courses.promo_2.label }}

    @@ -50,17 +50,17 @@

    {{ featured.full_courses.promo_2.label }}

    - {{ courses[featured.full_courses.promo_2.ID].topic }} + {{ courses[featured.full_courses.promo_2.id].topic }}

    - - {{ courses[featured.full_courses.promo_2.ID].title }} + + {{ courses[featured.full_courses.promo_2.id].title }}

    -

    {{ courses[featured.full_courses.promo_2.ID].description }}

    +

    {{ courses[featured.full_courses.promo_2.id].description }}

    @@ -75,8 +75,8 @@

    {{ featured.full_courses.promo_3.label }}

    @@ -84,17 +84,17 @@

    {{ featured.full_courses.promo_3.label }}

    - {{ courses[featured.full_courses.promo_3.ID].topic }} + {{ courses[featured.full_courses.promo_3.id].topic }}

    - - {{ courses[featured.full_courses.promo_3.ID].title }} + + {{ courses[featured.full_courses.promo_3.id].title }}

    -

    {{ courses[featured.full_courses.promo_3.ID].description }}

    +

    {{ courses[featured.full_courses.promo_3.id].description }}

    From 01dd7975d08e169030a292e52199a1d463258daa Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 25 May 2023 13:05:19 -0400 Subject: [PATCH 13/67] Progress commit --- _data/config.yml | 37 ++++++++++++++++++++++++++++++++ _data_config.yml | 1 + _local_config.yml | 1 + feeds/_partials/config.liquid | 12 +++++++++++ feeds/_partials/pages.liquid | 4 ++++ feeds/_partials/tutorials.liquid | 4 ---- feeds/_partials/webinars.liquid | 2 -- feeds/complete.json | 8 ++++++- feeds/generated-pages.json | 2 +- feeds/pages.json | 8 +++---- 10 files changed, 67 insertions(+), 12 deletions(-) create mode 100644 _data/config.yml create mode 100644 feeds/_partials/config.liquid diff --git a/_data/config.yml b/_data/config.yml new file mode 100644 index 000000000..7d7e6871d --- /dev/null +++ b/_data/config.yml @@ -0,0 +1,37 @@ +meta: + title: Aquent Gymnasium + subtitle: + author: Gymnasium + description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. +navigation: + - title: About + url: /about/ + - title: Courses + url: /courses/ + - title: Tutorials + url: /tutorials/ + - title: Webinars + url: /webinars/ + - title: Instructors + url: /instructors/ + - title: Blog + url: /blog/ +feeds: + - blog: https://medium.com/feed/gymnasium +social: + - title: Twitter + url: https://twitter.com/AquentGymnasium + - title: Facebook + url: https://www.facebook.com/aquentgymnasium/ + - title: Instagram + url: https://www.instagram.com/aquent_gymnasium/ + - title: YouTube + url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + - title: LinkedIn + url: https://www.linkedin.com/school/gymnasium/ + - title: Medium + url: https://medium.com/gymnasium + - title: Github + url: https://github.com/gymnasium + - title: TikTok + url: https://tiktok.com/@aquentgymnasium diff --git a/_data_config.yml b/_data_config.yml index d8669484b..845d8a1b2 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Data Feeds url: https://data--thegymcms.netlify.app #https://data.thegymcms.com +lms_url: https://learn.gym.soy gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York diff --git a/_local_config.yml b/_local_config.yml index e1714dad5..b5a906a24 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Static Content url: http://localhost:4000 +lms_url: https://learn.gym.soy gymurl: https://courses.gymna.si aqassetsurl: https://stag-assets.aquent.com timezone: America/New_York diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid new file mode 100644 index 000000000..3f82eed1f --- /dev/null +++ b/feeds/_partials/config.liquid @@ -0,0 +1,12 @@ +{%- assign data = site.data.config -%} +{%- comment -%} +{{data | jsonify}}, +{%- endcomment -%} +{%- for hash in data -%} + { + "{{ hash[0] }}": {{ hash[1] | jsonify }} + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} +,{"cms_url": "{{ site.url }}"}, +{"lms_url": "{{ site.lms_url }}"} diff --git a/feeds/_partials/pages.liquid b/feeds/_partials/pages.liquid index e69de29bb..759a88e5f 100644 --- a/feeds/_partials/pages.liquid +++ b/feeds/_partials/pages.liquid @@ -0,0 +1,4 @@ +{%- assign list = site.data.pages -%} +{%- assign counter = list | size -%} +{%- assign data = list | jsonify -%} +{{data}} diff --git a/feeds/_partials/tutorials.liquid b/feeds/_partials/tutorials.liquid index aaef511cf..920da6875 100644 --- a/feeds/_partials/tutorials.liquid +++ b/feeds/_partials/tutorials.liquid @@ -1,11 +1,7 @@ {%- assign list = site.data.take5 | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} - {%- assign data = data | replace: 'img', 'img' -%} - {%- assign data = data | replace: 'video_id', 'video_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/_partials/webinars.liquid b/feeds/_partials/webinars.liquid index cdb2f91f1..bc9f24f85 100644 --- a/feeds/_partials/webinars.liquid +++ b/feeds/_partials/webinars.liquid @@ -4,8 +4,6 @@ {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'content_category', 'category' -%} - {%- assign data = data | replace: 'video_id', 'video_id' -%} - {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/complete.json b/feeds/complete.json index e98300778..271bf89ac 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -6,14 +6,20 @@ permalink: /feeds/complete.json "title": "Gymnasium Complete Data Feed", "feed_url": "{{site.url}}/feeds/complete.json", "date_modified": "{{ site.time }}", - "environment": "{{ jekyll.environment }}", + "environment": "{{ site.environment }}", "items": { + "config":[ + {%-include_relative _partials/config.liquid -%} + ], "bios":[ {%-include_relative _partials/bios.liquid -%} ], "courses":[ {%-include_relative _partials/courses.liquid -%} ], + "pages": [ + {%-include_relative _partials/pages.liquid -%} + ], "tutorials":[ {%-include_relative _partials/tutorials.liquid -%} ], diff --git a/feeds/generated-pages.json b/feeds/generated-pages.json index 79a493c4d..53225dd58 100644 --- a/feeds/generated-pages.json +++ b/feeds/generated-pages.json @@ -16,7 +16,7 @@ permalink: /feeds/generated-pages.json {%- assign counter = list | size -%} {%- assign list = list | jsonify -%} { - "title": "Gymnasium GeneratedPages Feed", + "title": "Gymnasium Generated Pages Feed", "feed_url": "{{site.url}}/feeds/generated-pages.json", "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", diff --git a/feeds/pages.json b/feeds/pages.json index e76fdd723..430b1d47b 100644 --- a/feeds/pages.json +++ b/feeds/pages.json @@ -2,13 +2,13 @@ layout: null permalink: /feeds/pages.json --- -{%- assign list = site.data.pages -%} -{%- assign counter = list | size -%} -{%- assign list = list | jsonify -%} + { "title": "Gymnasium Pages Feed", "feed_url": "{{site.url}}/feeds/pages.json", "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", - "items": {{list}} + "items": [ + {%-include_relative _partials/pages.liquid -%} + ] } From 1ceb223079689eaee93f68530279cc747294b3bb Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 26 May 2023 11:53:05 -0400 Subject: [PATCH 14/67] add navigation links --- _data/config.yml | 130 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 101 insertions(+), 29 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index 7d7e6871d..c2baae752 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -3,35 +3,107 @@ meta: subtitle: author: Gymnasium description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. + og_img: /img/brand/og/gym-brand-og.png + twitter_handle: "@AquentGymnasium" navigation: - - title: About - url: /about/ - - title: Courses - url: /courses/ - - title: Tutorials - url: /tutorials/ - - title: Webinars - url: /webinars/ - - title: Instructors - url: /instructors/ - - title: Blog - url: /blog/ + main: + - title: About + url: /about/ + - title: Courses + url: /courses/ + - title: Tutorials + url: /tutorials/ + - title: Webinars + url: /webinars/ + - title: Instructors + url: /instructors/ + - title: Blog + url: /blog/ + footer: + What We Do: + - title: Courses + url: /courses/ + - title: Tutorials + url: /courses/take5/ + - title: Jobs + url: /jobs/ + - title: Webinars + url: /webinars/ + - title: Articles + url: https://medium.com/gymnasium + target: _blank + rel: noopener + - title: About + url: /about/ + Content Collections: + - title: Design Systems + url: /design-systems/ + - title: Web Development + url: /web-development/ + - title: UX Design + url: /ux-design/ + - title: Prototyping + url: /prototyping/ + - title: Accessibility + url: /accessibility/ + - title: Remote Work + url: /remote-work/ + Resources: + - title: FAQ + url: /faq/ + - title: Support + url: /support/ + - title: Social Impact + url: /social-impact/ + - title: Privacy Policy + url: /privacy-policy/ + - title: Corporate Social Responsibility + url: https://aquent.com/csr-policy + target: _blank + rel: noopener + - title: Impressum + url: https://aquent.de/impressum + target: _blank + rel: noopener + Social: + - title: Twitter + url: https://twitter.com/AquentGymnasium + - title: Facebook + url: https://www.facebook.com/aquentgymnasium/ + - title: Instagram + url: https://www.instagram.com/aquent_gymnasium/ + - title: YouTube + url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + - title: LinkedIn + url: https://www.linkedin.com/school/gymnasium/ + - title: Medium + url: https://medium.com/gymnasium + - title: Github + url: https://github.com/gymnasium + - title: TikTok + url: https://tiktok.com/@aquentgymnasium + Affiliated Sites: + - title: Aquent + url: https://aquent.com + target: _blank + rel: noopener + - title: Aquent Talent + url: https://aquenttalent.com + target: _blank + rel: noopener + - title: Aquent Studios + url: https://aquentstudios.com + target: _blank + rel: noopener + - title: Aquent RoboHead + url: https://www.robohead.net + target: _blank + rel: noopener + - title: Aquent Scout + url: https://aquentscout.com + target: _blank + rel: noopener + feeds: - blog: https://medium.com/feed/gymnasium -social: - - title: Twitter - url: https://twitter.com/AquentGymnasium - - title: Facebook - url: https://www.facebook.com/aquentgymnasium/ - - title: Instagram - url: https://www.instagram.com/aquent_gymnasium/ - - title: YouTube - url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw - - title: LinkedIn - url: https://www.linkedin.com/school/gymnasium/ - - title: Medium - url: https://medium.com/gymnasium - - title: Github - url: https://github.com/gymnasium - - title: TikTok - url: https://tiktok.com/@aquentgymnasium + From 0ba1e2c0f31fb6c45d8c16369d9695319faeafa1 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 26 May 2023 11:53:30 -0400 Subject: [PATCH 15/67] add additional urls per environment --- _data_config.yml | 2 ++ _local_config.yml | 2 ++ feeds/_partials/config.liquid | 7 ++++--- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/_data_config.yml b/_data_config.yml index 845d8a1b2..4cb261187 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -2,6 +2,8 @@ title: Gymnasium Data Feeds url: https://data--thegymcms.netlify.app #https://data.thegymcms.com lms_url: https://learn.gym.soy +astro_url: https://astro.gym.soy +eleventy_url: https://11ty.gym.soy gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York diff --git a/_local_config.yml b/_local_config.yml index b5a906a24..d9490c9f0 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -2,6 +2,8 @@ title: Gymnasium Static Content url: http://localhost:4000 lms_url: https://learn.gym.soy +astro_url: http://localhost:3030 +eleventy_url: http://localhost:4040 gymurl: https://courses.gymna.si aqassetsurl: https://stag-assets.aquent.com timezone: America/New_York diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 3f82eed1f..d68dafbee 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -6,7 +6,8 @@ { "{{ hash[0] }}": {{ hash[1] | jsonify }} } - {% unless forloop.last %},{% endunless %} {%- endfor -%} -,{"cms_url": "{{ site.url }}"}, -{"lms_url": "{{ site.lms_url }}"} +{"cms_url": "{{ site.url }}"}, +{"lms_url": "{{ site.lms_url }}"}, +{"eleventy_url": "{{ site.eleventy_url }}"}, +{"astro_url": "{{ site.astro_url }}"} From acb4f8dc756a18f1b44984e3f7bc1d9418c7a1a3 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 13:54:33 -0400 Subject: [PATCH 16/67] Improve JSON format --- _data/config.yml | 102 ++++++++++++++++++---------------- feeds/_partials/config.liquid | 22 +++++--- feeds/complete.json | 4 +- 3 files changed, 68 insertions(+), 60 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index c2baae752..dc1b8f790 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -7,103 +7,107 @@ meta: twitter_handle: "@AquentGymnasium" navigation: main: - - title: About - url: /about/ - - title: Courses - url: /courses/ - - title: Tutorials - url: /tutorials/ - - title: Webinars - url: /webinars/ - - title: Instructors - url: /instructors/ - - title: Blog - url: /blog/ + - title: About + href: /about/ + - title: Courses + href: /courses/ + - title: Tutorials + href: /tutorials/ + - title: Webinars + href: /webinars/ + - title: Instructors + href: /instructors/ + - title: Blog + href: /blog/ footer: - What We Do: + - title: What We Do + links: - title: Courses - url: /courses/ + href: /courses/ - title: Tutorials - url: /courses/take5/ + href: /courses/take5/ - title: Jobs - url: /jobs/ + href: /jobs/ - title: Webinars - url: /webinars/ + href: /webinars/ - title: Articles - url: https://medium.com/gymnasium + href: https://medium.com/gymnasium target: _blank rel: noopener - title: About - url: /about/ - Content Collections: + href: /about/ + - title: Content Collections + links: - title: Design Systems - url: /design-systems/ + href: /design-systems/ - title: Web Development - url: /web-development/ + href: /web-development/ - title: UX Design - url: /ux-design/ + href: /ux-design/ - title: Prototyping - url: /prototyping/ + href: /prototyping/ - title: Accessibility - url: /accessibility/ + href: /accessibility/ - title: Remote Work - url: /remote-work/ - Resources: + href: /remote-work/ + - title: Resources + links: - title: FAQ - url: /faq/ + href: /faq/ - title: Support - url: /support/ + href: /support/ - title: Social Impact - url: /social-impact/ + href: /social-impact/ - title: Privacy Policy - url: /privacy-policy/ + href: /privacy-policy/ - title: Corporate Social Responsibility - url: https://aquent.com/csr-policy + href: https://aquent.com/csr-policy target: _blank rel: noopener - title: Impressum - url: https://aquent.de/impressum + href: https://aquent.de/impressum target: _blank rel: noopener - Social: + - title: Social + links: - title: Twitter - url: https://twitter.com/AquentGymnasium + href: https://twitter.com/AquentGymnasium - title: Facebook - url: https://www.facebook.com/aquentgymnasium/ + href: https://www.facebook.com/aquentgymnasium/ - title: Instagram - url: https://www.instagram.com/aquent_gymnasium/ + href: https://www.instagram.com/aquent_gymnasium/ - title: YouTube - url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + href: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw - title: LinkedIn - url: https://www.linkedin.com/school/gymnasium/ + href: https://www.linkedin.com/school/gymnasium/ - title: Medium - url: https://medium.com/gymnasium + href: https://medium.com/gymnasium - title: Github - url: https://github.com/gymnasium + href: https://github.com/gymnasium - title: TikTok - url: https://tiktok.com/@aquentgymnasium - Affiliated Sites: + href: https://tiktok.com/@aquentgymnasium + - title: Affiliated Sites + links: - title: Aquent - url: https://aquent.com + href: https://aquent.com target: _blank rel: noopener - title: Aquent Talent - url: https://aquenttalent.com + href: https://aquenttalent.com target: _blank rel: noopener - title: Aquent Studios - url: https://aquentstudios.com + href: https://aquentstudios.com target: _blank rel: noopener - title: Aquent RoboHead - url: https://www.robohead.net + href: https://www.robohead.net target: _blank rel: noopener - title: Aquent Scout - url: https://aquentscout.com + href: https://aquentscout.com target: _blank rel: noopener - feeds: - blog: https://medium.com/feed/gymnasium diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index d68dafbee..47afc5115 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -1,13 +1,17 @@ {%- assign data = site.data.config -%} {%- comment -%} -{{data | jsonify}}, +{{ data | jsonify }}, {%- endcomment -%} -{%- for hash in data -%} - { - "{{ hash[0] }}": {{ hash[1] | jsonify }} - } + +{%- assign list = site.data.config -%} +{%- for hash in list -%} + {%- assign key = hash[0] | jsonify -%} + {%- assign value = hash[1] | jsonify -%} + {{key}}:{{value}}, + {% if forloop.last %} + "cms_url": "{{ site.url }}", + "lms_url": "{{ site.lms_url }}", + "eleventy_url": "{{ site.eleventy_url }}", + "astro_url": "{{ site.astro_url }}" + {% endif %} {%- endfor -%} -{"cms_url": "{{ site.url }}"}, -{"lms_url": "{{ site.lms_url }}"}, -{"eleventy_url": "{{ site.eleventy_url }}"}, -{"astro_url": "{{ site.astro_url }}"} diff --git a/feeds/complete.json b/feeds/complete.json index 271bf89ac..756f2635b 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -8,9 +8,9 @@ permalink: /feeds/complete.json "date_modified": "{{ site.time }}", "environment": "{{ site.environment }}", "items": { - "config":[ + "config": { {%-include_relative _partials/config.liquid -%} - ], + }, "bios":[ {%-include_relative _partials/bios.liquid -%} ], From 04baf01108a5662d6734f092ba292215cf290bdb Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 13:55:18 -0400 Subject: [PATCH 17/67] Update _data_config.yml --- _data_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data_config.yml b/_data_config.yml index 4cb261187..a1e21f42a 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,6 @@ # Setup title: Gymnasium Data Feeds -url: https://data--thegymcms.netlify.app #https://data.thegymcms.com +url: https://data.gym.soy #https://data.thegymcms.com lms_url: https://learn.gym.soy astro_url: https://astro.gym.soy eleventy_url: https://11ty.gym.soy From f5176c266ca600556a66d42db5df9cd7fb11c91a Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 15:03:01 -0400 Subject: [PATCH 18/67] Update config.yml --- _data/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index dc1b8f790..651e2fdb9 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -1,7 +1,7 @@ meta: - title: Aquent Gymnasium - subtitle: - author: Gymnasium + title: Gymnasium + subtitle: Free online courses on design and development + author: Aquent Gymnasium description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. og_img: /img/brand/og/gym-brand-og.png twitter_handle: "@AquentGymnasium" From 75859fa5649823e1361ac2a03bd85d9723fcd9ab Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 8 Jun 2023 14:47:45 -0400 Subject: [PATCH 19/67] remove hard-coded url --- feeds/_partials/bios.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/_partials/bios.liquid b/feeds/_partials/bios.liquid index 2b804f870..e2183bbf3 100644 --- a/feeds/_partials/bios.liquid +++ b/feeds/_partials/bios.liquid @@ -4,7 +4,7 @@ "id": "{{bio_hash[0]}}", "title": "{{bio.name}}", "subtitle": "{{bio.subtitle}}", - "img": "{{ site.url }}/img/webinar-bio-headshots/{{bio.headshot}}", + "img": "/img/webinar-bio-headshots/{{bio.headshot}}", "description": "{{bio.description | strip_html}}" } {% unless forloop.last %},{% endunless %} From e6e3e4edd588f670f163d8f0223e97abce82c9e4 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 8 Jun 2023 16:21:21 -0400 Subject: [PATCH 20/67] config: add logos and colors --- _data/config.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/_data/config.yml b/_data/config.yml index 651e2fdb9..55d0a80a0 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -110,4 +110,20 @@ navigation: rel: noopener feeds: - blog: https://medium.com/feed/gymnasium - +logos: + main: + white: + src: /img/brand/png/gymnasium-logo-white-4x.png + srcset: /img/brand/svg/gymnasium-logo-white.svg + black: + src: /img/brand/png/gymnasium-logo-black-lg.png + srcset: /img/brand/svg/gymnasium-logo-black.svg +colors: + orange: "#ff5f14" + blue: "#0077c8" + white: "#fff" + light-gray: "#ccc" + gray: "#a6a6a6" + medium-gray: "#737373" + dark-gray: "#444" + black: "#181818" From 22cb5d4e0eaeaeae0b3c8dd3dcae0cd8cd489650 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 12 Jun 2023 11:57:13 -0500 Subject: [PATCH 21/67] Add dummy variables, ripe for replacement --- _data/config.yml | 12 ++++++++++++ feeds/_partials/config.liquid | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/_data/config.yml b/_data/config.yml index 55d0a80a0..ebe1f2771 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -108,6 +108,18 @@ navigation: href: https://aquentscout.com target: _blank rel: noopener + - title: Dev Links + links: + - title: Gymnasium (Production) + href: https://thegymnasium.com + - title: Gym Astro + href: GYM_ASTRO_URL + - title: Gym Eleventy + href: GYM_ELEVENTY_URL + - title: Gym Soy Data + href: GYM_DATA_URL + - title: Gym LMS + href: GYM_LMS_URL feeds: - blog: https://medium.com/feed/gymnasium logos: diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 47afc5115..8aeb835b6 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -7,6 +7,10 @@ {%- for hash in list -%} {%- assign key = hash[0] | jsonify -%} {%- assign value = hash[1] | jsonify -%} + {%- assign value = value | replace: 'GYM_ASTRO_URL', site.astro_url -%} + {%- assign value = value | replace: 'GYM_ELEVENTY_URL', site.eleventy_url -%} + {%- assign value = value | replace: 'GYM_LMS_URL', site.lms_url -%} + {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, {% if forloop.last %} "cms_url": "{{ site.url }}", From 0fb89f31374d53921ef85ef049c585d2954c3993 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 12 Jun 2023 11:57:50 -0500 Subject: [PATCH 22/67] set all variables as the defaults --- _sass/_variables.scss | 70 +++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/_sass/_variables.scss b/_sass/_variables.scss index 53834c494..0bde33aa9 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -1,45 +1,45 @@ // Colors -$gym-orange: #ff5f14; -// $gym-orange-light: rgba(248, 151, 32, 0.9); -$gym-black: #181818; -$gym-blue: #0077c8; -$gym-white: #fff; -$gym-gray: #ccc; -$gym-gray-2: adjust-color($gym-gray, $lightness: 6.66%); // example: outputs #ddd, might as well hard-code this here -$gym-dark-gray: #444; -$gym-dark-gray-2: #333; -$gym-light-gray: #a6a6a6; -$gym-mid-gray: #737373; // grayscale $gym-blue -$gym-light-page-background: #ebebeb; - -$gym-button-background-hover: $gym-mid-gray; -$gym-button-background-focus: $gym-light-gray; -$gym-button-background-active: $gym-button-background-focus; +$gym-orange: #ff5f14 !default; +// $gym-orange-light: rgba(248, 151, 32, 0.9) !default; +$gym-black: #181818 !default; +$gym-blue: #0077c8 !default; +$gym-white: #fff !default; +$gym-gray: #ccc !default; +$gym-gray-2: adjust-color($gym-gray, $lightness: 6.66%) !default; // example: outputs #ddd, might as well hard-code this here +$gym-dark-gray: #444 !default; +$gym-dark-gray-2: #333 !default; +$gym-light-gray: #a6a6a6 !default; +$gym-mid-gray: #737373 !default; // grayscale $gym-blue +$gym-light-page-background: #ebebeb !default; + +$gym-button-background-hover: $gym-mid-gray !default; +$gym-button-background-focus: $gym-light-gray !default; +$gym-button-background-active: $gym-button-background-focus !default; // Fancy colors -$gym-green: #2c9959; -$gym-green-dark: adjust-color($gym-green, $lightness: -7.7%); // #237b47 -$gym-green-darker: adjust-color($gym-green, $lightness: -19.1%); // #164d2d +$gym-green: #2c9959 !default; +$gym-green-dark: adjust-color($gym-green, $lightness: -7.7%) !default; // #237b47 +$gym-green-darker: adjust-color($gym-green, $lightness: -19.1%) !default; // #164d2d -$gym-magenta: #d73158; -$gym-magenta-dark: adjust-color($gym-magenta, $lightness: -11.5%); // outputs #ac2142 -$gym-magenta-darker: adjust-color($gym-magenta, $lightness: -23%); // outputs #7b182f +$gym-magenta: #d73158 !default; +$gym-magenta-dark: adjust-color($gym-magenta, $lightness: -11.5%) !default; // outputs #ac2142 +$gym-magenta-darker: adjust-color($gym-magenta, $lightness: -23%) !default; // outputs #7b182f -$gym-purple: #764c9f; -$gym-purple-dark: adjust-color($gym-purple, $lightness: -11.5%); -$gym-purple-darker: adjust-color($gym-purple, $lightness: -23%); +$gym-purple: #764c9f !default; +$gym-purple-dark: adjust-color($gym-purple, $lightness: -11.5%) !default; +$gym-purple-darker: adjust-color($gym-purple, $lightness: -23%) !default; -$gym-teal: #5ca5a0; -$gym-teal-dark: adjust-color($gym-teal, $lightness: -11.58%); // outputs #46807c -$gym-teal-darker: adjust-color($gym-teal, $lightness: -26.9%); // #2b4d4b +$gym-teal: #5ca5a0 !default; +$gym-teal-dark: adjust-color($gym-teal, $lightness: -11.58%) !default; // outputs #46807c +$gym-teal-darker: adjust-color($gym-teal, $lightness: -26.9%) !default; // #2b4d4b -$holiday-red: #f30d21; -$holiday-green: #00b600; +$holiday-red: #f30d21 !default; +$holiday-green: #00b600 !default; // Fonts -$gym-text-font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif; -$gym-font-stack: "brandon-grotesque", $gym-text-font-stack; +$gym-text-font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif !default; +$gym-font-stack: "brandon-grotesque", $gym-text-font-stack !default; // A map of (commonly used) breakpoints. // TODO: we have a lot of other breakpoints specified in our CSS - maybe we can work to combine/reduce some of these rules @@ -47,8 +47,8 @@ $breakpoints: ( small: 640px, // 40em medium: 992px, // 62em large: 1200px // 75em -); +) !default; // Migrated from theme -$linked-in-blue: #0077b5; -$error-color: #d9534f; // replace with the magenta color above? +$linked-in-blue: #0077b5 !default; +$error-color: #d9534f !default; // replace with the magenta color above? From 9cf67f280a78656d49fcfe041a7d424d1b4c41b1 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 13 Jun 2023 11:16:21 -0500 Subject: [PATCH 23/67] map vs array? --- _data/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/config.yml b/_data/config.yml index ebe1f2771..c04d0b3fa 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -121,7 +121,7 @@ navigation: - title: Gym LMS href: GYM_LMS_URL feeds: - - blog: https://medium.com/feed/gymnasium + blog: https://medium.com/feed/gymnasium logos: main: white: From fdc61c69acb371a8f211e84e3652ae2b4bf7a54d Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 14 Jun 2023 12:39:11 -0500 Subject: [PATCH 24/67] one way to insert data into SASS --- css/main.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/main.scss b/css/main.scss index d42516a49..1b8d49fc8 100644 --- a/css/main.scss +++ b/css/main.scss @@ -1,5 +1,10 @@ --- --- +{%- for color in site.data.config.colors -%} +$gym-{{color[0]}}: {{color[1]}}; +@debug "{{color[0]}}: #{$gym-{{color[0]}}}"; +{%- endfor -%} + @import "functions"; @import "mixins"; @import "variables"; From 3334cf4a72167ec613da2908ab32ee90524ae399 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 10 Oct 2023 15:25:31 -0400 Subject: [PATCH 25/67] add openedx logo --- _data/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_data/config.yml b/_data/config.yml index c04d0b3fa..d23c3e835 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -130,6 +130,8 @@ logos: black: src: /img/brand/png/gymnasium-logo-black-lg.png srcset: /img/brand/svg/gymnasium-logo-black.svg + openedx: + src: /img/openedx/edx-logo-bw.png colors: orange: "#ff5f14" blue: "#0077c8" From 3bb0864c21d65e74c0bf0ec8e032bad0927b5740 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 13:19:43 -0400 Subject: [PATCH 26/67] add root url --- _data_config.yml | 1 + feeds/_partials/config.liquid | 2 ++ 2 files changed, 3 insertions(+) diff --git a/_data_config.yml b/_data_config.yml index a1e21f42a..df619bbac 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Data Feeds url: https://data.gym.soy #https://data.thegymcms.com +root_url: https://gym.soy lms_url: https://learn.gym.soy astro_url: https://astro.gym.soy eleventy_url: https://11ty.gym.soy diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 8aeb835b6..7bd3d081c 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -12,6 +12,8 @@ {%- assign value = value | replace: 'GYM_LMS_URL', site.lms_url -%} {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, + {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} + {{key}}:{{value}}, {% if forloop.last %} "cms_url": "{{ site.url }}", "lms_url": "{{ site.lms_url }}", From 57bf514797befd5ad059f13ca10387cc4f558a7f Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 13:35:13 -0400 Subject: [PATCH 27/67] Update config.liquid --- feeds/_partials/config.liquid | 1 + 1 file changed, 1 insertion(+) diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 7bd3d081c..5fde8ef63 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -15,6 +15,7 @@ {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} {{key}}:{{value}}, {% if forloop.last %} + "root_url": "{{ site.root_url }}", "cms_url": "{{ site.url }}", "lms_url": "{{ site.lms_url }}", "eleventy_url": "{{ site.eleventy_url }}", From 6bd9a8bb561bd26d7e513594b3edcb111c038660 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 19:02:29 -0400 Subject: [PATCH 28/67] update configs --- _local_config.yml | 1 + css/main.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_local_config.yml b/_local_config.yml index d9490c9f0..b0199fd34 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Static Content url: http://localhost:4000 +root_url: https://gym.soy lms_url: https://learn.gym.soy astro_url: http://localhost:3030 eleventy_url: http://localhost:4040 diff --git a/css/main.scss b/css/main.scss index 1b8d49fc8..cad63012c 100644 --- a/css/main.scss +++ b/css/main.scss @@ -2,7 +2,7 @@ --- {%- for color in site.data.config.colors -%} $gym-{{color[0]}}: {{color[1]}}; -@debug "{{color[0]}}: #{$gym-{{color[0]}}}"; +/*@debug "{{color[0]}}: #{$gym-{{color[0]}}}";*/ {%- endfor -%} @import "functions"; From 9fa18a8508618b8f4ca427528c68d62b7bd3120c Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 18 Oct 2023 11:13:07 -0400 Subject: [PATCH 29/67] absolute URLs for internal footer links --- _data/config.yml | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index d23c3e835..4d8d37d28 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -8,58 +8,58 @@ meta: navigation: main: - title: About - href: /about/ + href: GYM_ROOT_URL/about/ - title: Courses - href: /courses/ + href: GYM_ROOT_URL/courses/ - title: Tutorials - href: /tutorials/ + href: GYM_ROOT_URL/tutorials/ - title: Webinars - href: /webinars/ + href: GYM_ROOT_URL/webinars/ - title: Instructors - href: /instructors/ + href: GYM_ROOT_URL/instructors/ - title: Blog - href: /blog/ + href: GYM_ROOT_URL/blog/ footer: - title: What We Do links: - title: Courses - href: /courses/ + href: GYM_ROOT_URL/courses/ - title: Tutorials - href: /courses/take5/ + href: GYM_ROOT_URL/courses/take5/ - title: Jobs - href: /jobs/ + href: GYM_ROOT_URL/jobs/ - title: Webinars - href: /webinars/ + href: GYM_ROOT_URL/webinars/ - title: Articles href: https://medium.com/gymnasium target: _blank rel: noopener - title: About - href: /about/ + href: GYM_ROOT_URL/about/ - title: Content Collections links: - title: Design Systems - href: /design-systems/ + href: GYM_ROOT_URL/design-systems/ - title: Web Development - href: /web-development/ + href: GYM_ROOT_URL/web-development/ - title: UX Design - href: /ux-design/ + href: GYM_ROOT_URL/ux-design/ - title: Prototyping - href: /prototyping/ + href: GYM_ROOT_URL/prototyping/ - title: Accessibility - href: /accessibility/ + href: GYM_ROOT_URL/accessibility/ - title: Remote Work - href: /remote-work/ + href: GYM_ROOT_URL/remote-work/ - title: Resources links: - title: FAQ - href: /faq/ + href: GYM_ROOT_URL/faq/ - title: Support - href: /support/ + href: GYM_ROOT_URL/support/ - title: Social Impact - href: /social-impact/ + href: GYM_ROOT_URL/social-impact/ - title: Privacy Policy - href: /privacy-policy/ + href: GYM_ROOT_URL/privacy-policy/ - title: Corporate Social Responsibility href: https://aquent.com/csr-policy target: _blank From 49d0d17804c2b6b3fd2d3b55bdb50515daebbfca Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 18 Oct 2023 12:49:55 -0400 Subject: [PATCH 30/67] Update config.liquid move config variables to top for convenience --- feeds/_partials/config.liquid | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 5fde8ef63..9733606fc 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -5,6 +5,13 @@ {%- assign list = site.data.config -%} {%- for hash in list -%} + {% if forloop.first %} + "root_url": "{{ site.root_url }}", + "cms_url": "{{ site.url }}", + "lms_url": "{{ site.lms_url }}", + "eleventy_url": "{{ site.eleventy_url }}", + "astro_url": "{{ site.astro_url }}", + {% endif %} {%- assign key = hash[0] | jsonify -%} {%- assign value = hash[1] | jsonify -%} {%- assign value = value | replace: 'GYM_ASTRO_URL', site.astro_url -%} @@ -13,12 +20,6 @@ {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} - {{key}}:{{value}}, - {% if forloop.last %} - "root_url": "{{ site.root_url }}", - "cms_url": "{{ site.url }}", - "lms_url": "{{ site.lms_url }}", - "eleventy_url": "{{ site.eleventy_url }}", - "astro_url": "{{ site.astro_url }}" - {% endif %} + {{key}}:{{value}} + {% unless forloop.last %},{% endunless %} {%- endfor -%} From dfc020bc605bf9b5105a81523ff3af7cf12d15d1 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 7 Apr 2023 16:04:12 -0400 Subject: [PATCH 31/67] initial commit - Create webinars.json - Create bios.json - Create tutorials.json - Adds additional feed data - Create courses.json - update logic - Update courses.json - Create complete.json - Create pages.json - update feeds - feed DRY-ness --- _production_config.yml | 2 +- feeds/_partials/bios.html | 11 +++++ feeds/_partials/courses.html | 10 +++++ feeds/_partials/tutorials.html | 11 +++++ feeds/_partials/webinars.html | 14 +++++++ feeds/bios.json | 12 ++++++ feeds/complete.json | 24 +++++++++++ feeds/courses.json | 12 ++++++ feeds/pages.json | 24 +++++++++++ feeds/tutorials.json | 12 ++++++ feeds/webinars.json | 75 ++++++++++++++++++++++++++++++++++ 11 files changed, 206 insertions(+), 1 deletion(-) create mode 100644 feeds/_partials/bios.html create mode 100644 feeds/_partials/courses.html create mode 100644 feeds/_partials/tutorials.html create mode 100644 feeds/_partials/webinars.html create mode 100644 feeds/bios.json create mode 100644 feeds/complete.json create mode 100644 feeds/courses.json create mode 100644 feeds/pages.json create mode 100644 feeds/tutorials.json create mode 100644 feeds/webinars.json diff --git a/_production_config.yml b/_production_config.yml index 67cbacb7d..e395646cb 100644 --- a/_production_config.yml +++ b/_production_config.yml @@ -16,7 +16,7 @@ exclude: - 'README.md' - 'netlify.toml' - '.jekyll-cache' - - 'local' + - 'local' include: - '_redirects' diff --git a/feeds/_partials/bios.html b/feeds/_partials/bios.html new file mode 100644 index 000000000..2b804f870 --- /dev/null +++ b/feeds/_partials/bios.html @@ -0,0 +1,11 @@ +{%- for bio_hash in site.data.bios -%} + {%- assign bio = bio_hash[1] -%} + { + "id": "{{bio_hash[0]}}", + "title": "{{bio.name}}", + "subtitle": "{{bio.subtitle}}", + "img": "{{ site.url }}/img/webinar-bio-headshots/{{bio.headshot}}", + "description": "{{bio.description | strip_html}}" + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html new file mode 100644 index 000000000..d0a1984de --- /dev/null +++ b/feeds/_partials/courses.html @@ -0,0 +1,10 @@ +{%- assign list = site.data.courses | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_type', 'type' -%} + {%- assign data = data | replace: 'poster_art', 'img' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html new file mode 100644 index 000000000..747964dfa --- /dev/null +++ b/feeds/_partials/tutorials.html @@ -0,0 +1,11 @@ +{%- assign list = site.data.take5 | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_type', 'type' -%} + {%- assign data = data | replace: 'poster_art', 'img' -%} + {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html new file mode 100644 index 000000000..bfb08d3d5 --- /dev/null +++ b/feeds/_partials/webinars.html @@ -0,0 +1,14 @@ +{%- assign list = site.data.webinars | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'event_date', 'date' -%} + {%- assign data = data | replace: 'event_guests', 'subtitle' -%} + {%- assign data = data | replace: 'event_title', 'title' -%} + {%- assign data = data | replace: 'event_ID', 'id' -%} + {%- assign data = data | replace: 'content_category', 'category' -%} + {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {%- assign data = data | replace: 'webinar_ID', 'webinar_id' -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/bios.json b/feeds/bios.json new file mode 100644 index 000000000..a8e6c9fbc --- /dev/null +++ b/feeds/bios.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/bios.json +--- +{ + "title": "Gymnasium Bios Feed", + "feed_url": "{{site.url}}/feeds/bios.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/bios.html -%} +]} diff --git a/feeds/complete.json b/feeds/complete.json new file mode 100644 index 000000000..ad9c951a2 --- /dev/null +++ b/feeds/complete.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/complete.json +--- +{ + "title": "Gymnasium Complete Data Feed", + "feed_url": "{{site.url}}/feeds/complete.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": { + "bios":[ + {%-include_relative _partials/bios.html -%} + ], + "courses":[ + {%-include_relative _partials/courses.html -%} + ], + "tutorials":[ + {%-include_relative _partials/tutorials.html -%} + ], + "webinars":[ + {%-include_relative _partials/webinars.html -%} + ] + } +} diff --git a/feeds/courses.json b/feeds/courses.json new file mode 100644 index 000000000..4a4864997 --- /dev/null +++ b/feeds/courses.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/courses.json +--- +{ + "title": "Gymnasium Courses Feed", + "feed_url": "{{site.url}}/feeds/courses.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/courses.html -%} +]} diff --git a/feeds/pages.json b/feeds/pages.json new file mode 100644 index 000000000..d246cd19e --- /dev/null +++ b/feeds/pages.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/pages.json +--- + +{%- assign pages = "" | split: "," -%} + +{%- for page in site.pages -%} +{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" -%} +{%- else -%} +{%- assign pages = pages | push:page -%} +{%- endif -%} +{%- endfor -%} + +{%- assign list = pages | sort:"url" -%} +{%- assign counter = list | size -%} +{%- assign list = list | jsonify -%} +{ + "title": "Gymnasium Pages Feed", + "feed_url": "{{site.url}}/feeds/pages.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": {{list}} +} diff --git a/feeds/tutorials.json b/feeds/tutorials.json new file mode 100644 index 000000000..eb74c3c67 --- /dev/null +++ b/feeds/tutorials.json @@ -0,0 +1,12 @@ +--- +layout: null +permalink: /feeds/tutorials.json +--- +{ + "title": "Gymnasium Tutorials (Take 5) Feed", + "feed_url": "{{site.url}}/feeds/tutorials.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ + {%-include_relative _partials/tutorials.html -%} +]} diff --git a/feeds/webinars.json b/feeds/webinars.json new file mode 100644 index 000000000..baa4e99a3 --- /dev/null +++ b/feeds/webinars.json @@ -0,0 +1,75 @@ +--- +layout: null +permalink: /feeds/webinars.json +--- +{%- assign webinars_ascending_date = "" | split: ", " -%} +{%- assign webinars_descending_date = "" | split: ", " -%} + +{%- assign sorted_webinars = site.data.webinars | sort: event_date -%} + +{% for webinar_list in sorted_webinars %} +{% assign webinar = webinar_list[1] %} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{% endfor %} + +{%- assign webinars_descending_date = webinars_ascending_date | reverse -%} + +{%- assign counter = site.data.webinars | size -%} + +{ + "title": "Gymnasium Webibars Feed", + "feed_url": "{{site.url}}/feeds/webinars.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": [ +{%- for webinar in webinars_descending_date -%} + {%- assign data = site.data.webinars[webinar] -%} + + {%- assign title = data.event_title | strip_html -%} + {%- assign description = data.short_description | strip_html -%} + {%- assign decolonized_webinar_title = title | split: ":" -%} + {%- assign webinar_title = decolonized_webinar_title[0] -%} + {%- assign webinar_subtitle = decolonized_webinar_title[1] -%} + {%- assign speaker_1 = data.speaker[0] -%} + {%- assign speaker_2 = data.speaker[1] -%} + + {%- assign webinar_url = data.permalink | prepend: site.gymurl -%} + + { + "id": "{{ data.event_ID | slice: 0,7 }}", + "slug": "{{ data.permalink | replace: '/webinars/', '' }}", + "category": "{{ data.content_category }}", + "date": "{{ data.event_date }}", + "description": "{{ data.short_description | strip_html }}", + "host": "{{ data.host }}", + "event_ogimage": "/img/social/webinars/{{ data.event_ogimage }}", + "recording_ogimage": "/img/social/webinars/{{ data.recording_ogimage }}", + "landing": {%- if data.landing -%}{{data.landing}}{%- else -%}false{%- endif -%}, + "resources": + {%- assign resources = data.resources | jsonify -%} + {{ resources}}, + "register": {%- if data.register -%}{{data.register}}{%- else -%}false{%- endif -%}, + "speakers": [ + {%- assign subcounter = data.speaker | size -%} + {%- for item in data.speaker -%} + { + "title": "{{site.data.bios[item].name}}", + "subtitle": "{{site.data.bios[item].subtitle}}", + "img": "/img/webinar-bio-headshots/{{site.data.bios[item].headshot}}", + "description": "{{site.data.bios[item].description | strip_html}}" + } + {% unless forloop.last %},{% endunless %} + {%- endfor -%} + ], + "subtitle": "{{ data.event_guests | strip_html }}", + "time": "{{ data.event_time }}", + "time_blurb": "Live streaming on {{ data.event_date | date: '%A, %B %-d, %Y at ' }}{{ data.event_time }}", + "title": "{{ title }}", + "video": {%- if data.video -%}{{data.video}}{%- else -%}false{%- endif -%}, + "video_id": "{{ data.video_ID }}", + "webinar_id": "{{ data.webinar_ID }}", + "webinar_question_key": "{{ data.webinar_question_key }}" + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} +]} From 4fa33cb993066403905be080baa6f1017c1fef8f Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 4 May 2023 09:51:13 -0400 Subject: [PATCH 32/67] pages json --- feeds/_partials/pages.html | 0 feeds/generated-pages.json | 24 ++++++++++++++++++++++++ feeds/pages.json | 12 +----------- 3 files changed, 25 insertions(+), 11 deletions(-) create mode 100644 feeds/_partials/pages.html create mode 100644 feeds/generated-pages.json diff --git a/feeds/_partials/pages.html b/feeds/_partials/pages.html new file mode 100644 index 000000000..e69de29bb diff --git a/feeds/generated-pages.json b/feeds/generated-pages.json new file mode 100644 index 000000000..79a493c4d --- /dev/null +++ b/feeds/generated-pages.json @@ -0,0 +1,24 @@ +--- +layout: null +permalink: /feeds/generated-pages.json +--- + +{%- assign pages = "" | split: "," -%} + +{%- for page in site.pages -%} +{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" or page.url contains "/prototypes/" or page.url contains "/dev/" -%} +{%- else -%} +{%- assign pages = pages | push:page -%} +{%- endif -%} +{%- endfor -%} + +{%- assign list = pages | sort:"url" -%} +{%- assign counter = list | size -%} +{%- assign list = list | jsonify -%} +{ + "title": "Gymnasium GeneratedPages Feed", + "feed_url": "{{site.url}}/feeds/generated-pages.json", + "date_modified": "{{ site.time }}", + "environment": "{{ jekyll.environment }}", + "items": {{list}} +} diff --git a/feeds/pages.json b/feeds/pages.json index d246cd19e..e76fdd723 100644 --- a/feeds/pages.json +++ b/feeds/pages.json @@ -2,17 +2,7 @@ layout: null permalink: /feeds/pages.json --- - -{%- assign pages = "" | split: "," -%} - -{%- for page in site.pages -%} -{%- if page.url contains "/feeds/" or page.url contains "/tests/" or page.url contains "/css/" or page.url contains "/js/" or page.url contains "/partials/" or page.url contains "/raw-html-css/" or page.url contains "/fonts/" -%} -{%- else -%} -{%- assign pages = pages | push:page -%} -{%- endif -%} -{%- endfor -%} - -{%- assign list = pages | sort:"url" -%} +{%- assign list = site.data.pages -%} {%- assign counter = list | size -%} {%- assign list = list | jsonify -%} { From fc5527e31c13ab296e52d88567076234c40759c2 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 10:33:14 -0400 Subject: [PATCH 33/67] Adds netlify branch config --- _data_config.yml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ netlify.toml | 12 ++++++++++ 2 files changed, 71 insertions(+) create mode 100644 _data_config.yml diff --git a/_data_config.yml b/_data_config.yml new file mode 100644 index 000000000..6c20740bd --- /dev/null +++ b/_data_config.yml @@ -0,0 +1,59 @@ +# Setup +title: Gymnasium Data Feeds +url: https://data.thegymcms.com +gymurl: https://thegymnasium.com +aqassetsurl: https://assets.aquent.com +timezone: America/New_York +environment: data + +# Building + +exclude: + - 'docker-compose.yml' + - 'Gemfile' + - 'Gemfile.lock' + - 'README.md' + - 'netlify.toml' + - '.jekyll-cache' + - 'local' + +include: + - '_redirects' + +repository: gymnasium/gymcms + +# Conversion +markdown: kramdown +highlighter: rouge + +# Serving (local) +detach: false +port: 4000 +host: 127.0.0.1 + +# Markdown Processing +kramdown: + auto_ids: true + entity_output: as_char + toc_levels: 1..6 + smart_quotes: lsquo,rsquo,ldquo,rdquo + input: GFM + hard_wrap: false + footnote_nr: 1 + show_warnings: false + +## CSS Preprocessing/SASS (see @https://github.com/jekyll/jekyll-sass-converter) +sass: + sass_dir: _sass + style: compressed + +## Additional Plugins +plugins: + - jekyll-get-json + +## JSON Fetch +jekyll_get_json: + - data: jobs + json: 'https://assets.aquent.com/apps/gym/jobs.json?limit=1500' + - data: markets + json: 'https://assets.aquent.com/apps/gym/markets.json' diff --git a/netlify.toml b/netlify.toml index 801ec08ec..c820ee8ee 100644 --- a/netlify.toml +++ b/netlify.toml @@ -68,3 +68,15 @@ minify = true [context.production.processing.js] minify = true + +# data branch build +# https://data.thegymcms.com/ +[context.data] + command = "JEKYLL_ENV=data bundle exec jekyll build --config _data_config.yml" + +[context.data.processing.images] + compress = true +[context.data.processing.css] + minify = true +[context.data.processing.js] + minify = true From cd4b5a2ad7bc709f05c66ee9f2150a1a1787f412 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:22:46 -0400 Subject: [PATCH 34/67] Replace `short_description` with `description` --- _data/collections/01-COL-004.yml | 2 +- _data/collections/02-COL-003.yml | 2 +- _data/collections/03-COL-006.yml | 2 +- _data/collections/04-COL-002.yml | 2 +- _data/collections/05-COL-001.yml | 2 +- _data/collections/06-COL-005.yml | 2 +- _data/courses/GYM-001.yml | 2 +- _data/courses/GYM-002.yml | 4 ++-- _data/courses/GYM-003.yml | 4 ++-- _data/courses/GYM-004.yml | 2 +- _data/courses/GYM-005.yml | 4 ++-- _data/courses/GYM-006.yml | 2 +- _data/courses/GYM-007.yml | 2 +- _data/courses/GYM-008.yml | 4 ++-- _data/courses/GYM-009.yml | 2 +- _data/courses/GYM-011.yml | 2 +- _data/courses/GYM-012.yml | 2 +- _data/courses/GYM-013.yml | 2 +- _data/courses/GYM-014.yml | 2 +- _data/courses/GYM-015.yml | 2 +- _data/courses/GYM-016.yml | 4 ++-- _data/courses/GYM-017.yml | 2 +- _data/courses/GYM-018.yml | 2 +- _data/courses/GYM-019.yml | 2 +- _data/courses/GYM-020.yml | 2 +- _data/courses/GYM-100.yml | 4 ++-- _data/courses/GYM-101.yml | 4 ++-- _data/courses/GYM-102.yml | 2 +- _data/courses/GYM-103.yml | 2 +- _data/courses/GYM-104.yml | 2 +- _data/courses/GYM-105.yml | 4 ++-- _data/courses/GYM-106.yml | 2 +- _data/courses/GYM-107.yml | 2 +- _data/courses/GYM-108.yml | 2 +- _data/courses/GYM-109.yml | 2 +- _data/hero.yml | 2 +- _data/pages/courses.yml | 8 ++++---- _data/take5/GYM-5001.yml | 2 +- _data/take5/GYM-5002.yml | 2 +- _data/take5/GYM-5003.yml | 2 +- _data/take5/GYM-5004.yml | 2 +- _data/take5/GYM-5005.yml | 2 +- _data/take5/GYM-5006.yml | 2 +- _data/take5/GYM-5007.yml | 2 +- _data/take5/GYM-5008.yml | 2 +- _data/take5/GYM-5009.yml | 2 +- _data/take5/GYM-5010.yml | 2 +- _data/take5/GYM-5011.yml | 2 +- _data/take5/GYM-5012.yml | 2 +- _data/take5/GYM-5013.yml | 2 +- _data/take5/GYM-5014.yml | 2 +- _data/take5/GYM-5015.yml | 2 +- _data/take5/GYM-5016.yml | 2 +- _data/take5/GYM-5017.yml | 2 +- _data/take5/GYM-5018.yml | 2 +- _data/take5/GYM-5019.yml | 2 +- _data/take5/GYM-5020.yml | 2 +- _data/take5/GYM-5021.yml | 2 +- _data/take5/GYM-5022.yml | 2 +- _data/take5/GYM-5023.yml | 2 +- _data/take5/GYM-5024.yml | 2 +- _data/take5/GYM-5025.yml | 2 +- _data/take5/GYM-5026.yml | 2 +- _data/take5/GYM-5027.yml | 2 +- _data/take5/GYM-5028.yml | 2 +- _data/take5/GYM-5029.yml | 2 +- _data/take5/GYM-5030.yml | 2 +- _data/take5/GYM-5031.yml | 2 +- _data/take5/GYM-5032.yml | 2 +- _data/take5/GYM-5033.yml | 2 +- _data/take5/GYM-5034.yml | 2 +- _data/take5/GYM-5035.yml | 2 +- _data/take5/GYM-5036.yml | 2 +- _data/take5/GYM-5037.yml | 2 +- _data/take5/GYM-5038.yml | 2 +- _data/take5/GYM-5039.yml | 2 +- _data/take5/GYM-5040.yml | 2 +- _data/take5/GYM-5041.yml | 2 +- _data/take5/GYM-5042.yml | 2 +- _data/take5/GYM-5043.yml | 2 +- _data/take5/GYM-5044.yml | 2 +- _data/take5/GYM-5045.yml | 2 +- _data/take5/GYM-5046.yml | 2 +- _data/take5/GYM-5047.yml | 2 +- _data/take5/GYM-5048.yml | 2 +- _data/take5/GYM-5049.yml | 2 +- _data/take5/GYM-5050.yml | 2 +- _data/take5/GYM-5051.yml | 2 +- _data/take5/GYM-5052.yml | 2 +- _data/take5/GYM-5053.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- _data/webinars/web0001-designing-for-understanding.yml | 2 +- _data/webinars/web0002-designing-for-real-people.yml | 2 +- .../web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- .../web0005-state-of-responsive-web-design.yml | 2 +- _data/webinars/web0006-keeping-up-with-javascript.yml | 2 +- .../webinars/web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- .../web0013-decade-of-responsive-web-design.yml | 2 +- _data/workshops/GYM-700.yml | 2 +- _data/workshops/homepage.yml | 2 +- _includes/courses/featured/full-courses.html | 6 +++--- _includes/courses/featured/gym-shorts.html | 6 +++--- _includes/heros/live-streams/content.html | 2 +- _includes/home/featured-courses.html | 2 +- _includes/partials/meta/logic-courses.html | 2 +- _includes/partials/meta/logic-take5.html | 2 +- _includes/partials/meta/logic-webinars.html | 2 +- _includes/take5/catalog-topic-group.html | 2 +- _includes/workshops/workshop.html | 6 +++--- _layouts/take5-raw.html | 2 +- _layouts/webinar.html | 4 ++-- courses/full/course-list-recent.html | 2 +- courses/full/index.html | 2 +- courses/gym-shorts/course-list-recent.html | 2 +- courses/gym-shorts/index.html | 2 +- courses/index.html | 2 +- courses/take5/course-list-recent.html | 2 +- courses/take5/index.html | 4 ++-- courses/workshops/course-list-recent.html | 2 +- docs/README.md | 4 ++-- feeds/_partials/courses.html | 2 +- feeds/_partials/tutorials.html | 2 +- feeds/_partials/webinars.html | 2 +- feeds/featured-courses.html | 2 +- feeds/webinars.json | 4 ++-- hub-pages/collections/collections.html | 2 +- take5/catalog-blitz.html | 2 +- take5/catalog-debug.html | 2 +- tests/bios.html | 2 +- tests/catalog/full-lister.html | 4 ++-- tests/catalog/test-lister.html | 10 +++++----- tests/featurer.html | 2 +- tests/take5/take5-content-test.html | 8 ++++---- tests/take5/take5-lister.html | 6 +++--- webinars/index.html | 2 +- 141 files changed, 172 insertions(+), 172 deletions(-) diff --git a/_data/collections/01-COL-004.yml b/_data/collections/01-COL-004.yml index ee153153a..c9bddc8f6 100644 --- a/_data/collections/01-COL-004.yml +++ b/_data/collections/01-COL-004.yml @@ -2,7 +2,7 @@ collection_ID: COL-004 title: "Accessibility" topic: "Accessibility" -short_description: "No matter what your title is, creating an inclusive web is everyone’s job." +description: "No matter what your title is, creating an inclusive web is everyone’s job." url: https://thegymnasium.com/accessibility order: 1 --- diff --git a/_data/collections/02-COL-003.yml b/_data/collections/02-COL-003.yml index abaae0a91..9608c9733 100644 --- a/_data/collections/02-COL-003.yml +++ b/_data/collections/02-COL-003.yml @@ -2,7 +2,7 @@ collection_ID: COL-003 title: "Prototyping" topic: "Prototyping" -short_description: "Take the guesswork out of your design process and build better products." +description: "Take the guesswork out of your design process and build better products." url: https://thegymnasium.com/prototyping order: 2 --- diff --git a/_data/collections/03-COL-006.yml b/_data/collections/03-COL-006.yml index 2b1a9da61..b8ad47e0d 100644 --- a/_data/collections/03-COL-006.yml +++ b/_data/collections/03-COL-006.yml @@ -2,7 +2,7 @@ collection_ID: COL-006 title: "Design Systems" topic: "Design Systems" -short_description: "Teamwork (and creating effective pattern libraries) makes the dream work." +description: "Teamwork (and creating effective pattern libraries) makes the dream work." url: https://thegymnasium.com/design-systems order: 3 --- diff --git a/_data/collections/04-COL-002.yml b/_data/collections/04-COL-002.yml index df77b3214..23af4728f 100644 --- a/_data/collections/04-COL-002.yml +++ b/_data/collections/04-COL-002.yml @@ -2,7 +2,7 @@ collection_ID: COL-002 title: "UX Design" topic: "UX" -short_description: "User experience can make or break a website. Let’s put yours to the test." +description: "User experience can make or break a website. Let’s put yours to the test." url: https://thegymnasium.com/ux-design order: 4 --- diff --git a/_data/collections/05-COL-001.yml b/_data/collections/05-COL-001.yml index 9d3f72e2f..97ff1299e 100644 --- a/_data/collections/05-COL-001.yml +++ b/_data/collections/05-COL-001.yml @@ -2,7 +2,7 @@ collection_ID: COL-001 title: "Web Development" topic: "Development" -short_description: "Develop the skills you need to build fast, responsive websites." +description: "Develop the skills you need to build fast, responsive websites." url: https://thegymnasium.com/web-development order: 5 --- diff --git a/_data/collections/06-COL-005.yml b/_data/collections/06-COL-005.yml index e4526a053..0e584bfd1 100644 --- a/_data/collections/06-COL-005.yml +++ b/_data/collections/06-COL-005.yml @@ -2,7 +2,7 @@ collection_ID: COL-005 title: "Remote Work" topic: "Career Skills" -short_description: "Whether you’re WFH or a digital nomad, we’ve got you covered." +description: "Whether you’re WFH or a digital nomad, we’ve got you covered." url: https://thegymnasium.com/remote-work order: 6 --- diff --git a/_data/courses/GYM-001.yml b/_data/courses/GYM-001.yml index b79287551..221db4529 100644 --- a/_data/courses/GYM-001.yml +++ b/_data/courses/GYM-001.yml @@ -7,7 +7,7 @@ url: /courses/GYM/001/0/about poster_art: /img/course-artwork/png/gym-001.png live: true topic: "Career Skills" -short_description: "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is." +description: "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is." instructor: bharned skills: - label: "Project estimation" diff --git a/_data/courses/GYM-002.yml b/_data/courses/GYM-002.yml index 15ad3cee8..3a2a29b2d 100644 --- a/_data/courses/GYM-002.yml +++ b/_data/courses/GYM-002.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/002/0/about poster_art: /img/course-artwork/png/gym-002.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Learn the basics of Node.js by building a “sample social” profile form." +description: "This course has been retired." +description_orig: "Learn the basics of Node.js by building a “sample social” profile form." instructor: jhargrove skills: - label: "Installing a Node.js server" diff --git a/_data/courses/GYM-003.yml b/_data/courses/GYM-003.yml index f564a4c64..0a5894477 100644 --- a/_data/courses/GYM-003.yml +++ b/_data/courses/GYM-003.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/003/0/about poster_art: /img/course-artwork/png/gym-003.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Get up to speed with the Twitter Bootstrap’s grid layout system and learn how to build a responsive layout that looks great on multiple screen sizes and devices." +description: "This course has been retired." +description_orig: "Get up to speed with the Twitter Bootstrap’s grid layout system and learn how to build a responsive layout that looks great on multiple screen sizes and devices." instructor: josborn skills: - label: "Bootstrap basics" diff --git a/_data/courses/GYM-004.yml b/_data/courses/GYM-004.yml index c9fcb1734..c69e0e9fb 100644 --- a/_data/courses/GYM-004.yml +++ b/_data/courses/GYM-004.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/004/0/about poster_art: /img/course-artwork/png/gym-004.png topic: "Development" -short_description: "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design." +description: "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design." instructor: ghodgkinson skills: - label: "Intermediate HTML/CSS" diff --git a/_data/courses/GYM-005.yml b/_data/courses/GYM-005.yml index 06d101744..46c4a6a1b 100644 --- a/_data/courses/GYM-005.yml +++ b/_data/courses/GYM-005.yml @@ -11,8 +11,8 @@ poster_art: /img/course-artwork/png/gym-005.png topic: "UX" subtopics: - label: "Prototyping" -short_description: "This course has been retired." -short_description_orig: "Learn how to use Sketch tools and features in order to build an interactive prototype for a mobile website." +description: "This course has been retired." +description_orig: "Learn how to use Sketch tools and features in order to build an interactive prototype for a mobile website." instructor: josborn skills: - label: "Sketch fundamentals" diff --git a/_data/courses/GYM-006.yml b/_data/courses/GYM-006.yml index 684ac6b5a..c9faf4794 100644 --- a/_data/courses/GYM-006.yml +++ b/_data/courses/GYM-006.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/006/0/about poster_art: /img/course-artwork/png/gym-006.png topic: "Development" -short_description: "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either." +description: "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either." instructor: jausura skills: - label: "Version control" diff --git a/_data/courses/GYM-007.yml b/_data/courses/GYM-007.yml index 9cf8a3630..e7b560220 100644 --- a/_data/courses/GYM-007.yml +++ b/_data/courses/GYM-007.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/007/0/about poster_art: /img/course-artwork/png/gym-007.png topic: "Development" -short_description: "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes." +description: "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes." instructor: jkramer skills: - label: "Web Forms" diff --git a/_data/courses/GYM-008.yml b/_data/courses/GYM-008.yml index d52ea5705..651196064 100644 --- a/_data/courses/GYM-008.yml +++ b/_data/courses/GYM-008.yml @@ -11,8 +11,8 @@ poster_art: /img/course-artwork/png/gym-008.png topic: "UX" subtopics: - label: "Prototyping" -short_description: "This course has been retired." -short_description_orig: "Learn how to use the conditional logic features in Axure in order to quickly create an interactive prototype." +description: "This course has been retired." +description_orig: "Learn how to use the conditional logic features in Axure in order to quickly create an interactive prototype." instructor: tslate skills: - label: "Interactive prototyping" diff --git a/_data/courses/GYM-009.yml b/_data/courses/GYM-009.yml index 04b76adbd..fdc67580b 100644 --- a/_data/courses/GYM-009.yml +++ b/_data/courses/GYM-009.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/009/0/about poster_art: /img/course-artwork/png/gym-009.png topic: "Development" -short_description: "This course will teach you how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme." +description: "This course will teach you how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme." instructor: ghodgkinson skills: - label: "Intermediate HTML/CSS" diff --git a/_data/courses/GYM-011.yml b/_data/courses/GYM-011.yml index 81ecf3ca6..768c9fddf 100644 --- a/_data/courses/GYM-011.yml +++ b/_data/courses/GYM-011.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+011+0/about poster_art: /img/course-artwork/png/gym-011.png topic: "Development" -short_description: "In this course, you will get a familiarity with all aspects of the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications." +description: "In this course, you will get a familiarity with all aspects of the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications." instructor: kpeters skills: - label: "HTML & CSS Modification" diff --git a/_data/courses/GYM-012.yml b/_data/courses/GYM-012.yml index 2439bd7fa..17c3c76e7 100644 --- a/_data/courses/GYM-012.yml +++ b/_data/courses/GYM-012.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-012.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "In this course, you will learn how to build a simple web app using Node.js." +description: "In this course, you will learn how to build a simple web app using Node.js." instructor: tsellon skills: - label: "Installing Node.js" diff --git a/_data/courses/GYM-013.yml b/_data/courses/GYM-013.yml index bb2356f93..44510765d 100644 --- a/_data/courses/GYM-013.yml +++ b/_data/courses/GYM-013.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+013+0/about poster_art: /img/course-artwork/png/gym-013.png topic: "Design" -short_description: "Learn how to create 3D generated imagery in Maya for use in Virtual Reality production." +description: "Learn how to create 3D generated imagery in Maya for use in Virtual Reality production." instructor: groberts skills: - label: "Basic 3D Modeling, Animation and Rigging" diff --git a/_data/courses/GYM-014.yml b/_data/courses/GYM-014.yml index bbd9666a5..88deb1ee1 100644 --- a/_data/courses/GYM-014.yml +++ b/_data/courses/GYM-014.yml @@ -10,7 +10,7 @@ topic: "Development" subtopics: - label: "Design Systems" - label: "Pattern Library" -short_description: "Learn how to use Atomic Design methodology within Pattern Lab in order to create reusable user interface components." +description: "Learn how to use Atomic Design methodology within Pattern Lab in order to create reusable user interface components." instructor: bfrost skills: - label: "Website prototyping" diff --git a/_data/courses/GYM-015.yml b/_data/courses/GYM-015.yml index b10c32cb2..7c5e20d65 100644 --- a/_data/courses/GYM-015.yml +++ b/_data/courses/GYM-015.yml @@ -13,7 +13,7 @@ subtopics: - label: "Axure" - label: "Figma" - label: "Adobe XD" -short_description: "Learn how to use prototypes as a communication and collaboration device for building digital products and websites." +description: "Learn how to use prototypes as a communication and collaboration device for building digital products and websites." instructor: jbantjes skills: - label: "How to choose the right method of prototyping" diff --git a/_data/courses/GYM-016.yml b/_data/courses/GYM-016.yml index 8d216b497..4c5618474 100644 --- a/_data/courses/GYM-016.yml +++ b/_data/courses/GYM-016.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-016.png topic: "Development" subtopics: - label: "Accessibility" -short_description: "Learn accessible and responsive design best practices to help make a more user-friendly web for everyone." +description: "Learn accessible and responsive design best practices to help make a more user-friendly web for everyone." instructor: emarcotte skills: - label: "Accessibility" @@ -22,4 +22,4 @@ audience: lessons_duration: "1 hour" completion_duration: "Up to 2 hours" skill_level: "Intermediate" ---- \ No newline at end of file +--- diff --git a/_data/courses/GYM-017.yml b/_data/courses/GYM-017.yml index fb7b93dd7..38b9efc98 100644 --- a/_data/courses/GYM-017.yml +++ b/_data/courses/GYM-017.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-017.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how to effectively integrate pattern libraries and design systems into your organization’s workflow." +description: "Learn how to effectively integrate pattern libraries and design systems into your organization’s workflow." instructor: emarcotte skills: - label: "Design Thinking" diff --git a/_data/courses/GYM-018.yml b/_data/courses/GYM-018.yml index 3e72fa969..ad912b607 100644 --- a/_data/courses/GYM-018.yml +++ b/_data/courses/GYM-018.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-018.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how to incorporate pattern libraries and design systems into your workflow." +description: "Learn how to incorporate pattern libraries and design systems into your workflow." instructor: emarcotte skills: - label: "Working with pattern libraries" diff --git a/_data/courses/GYM-019.yml b/_data/courses/GYM-019.yml index 067b1a032..feeca4373 100644 --- a/_data/courses/GYM-019.yml +++ b/_data/courses/GYM-019.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-019.png topic: "Development" subtopics: - label: "Design Systems" -short_description: "Learn how to use your development skills to help build and support an effective and thriving design system." +description: "Learn how to use your development skills to help build and support an effective and thriving design system." instructor: emarcotte skills: - label: "Organizing and naming best practices" diff --git a/_data/courses/GYM-020.yml b/_data/courses/GYM-020.yml index 5c096caeb..5513d4388 100644 --- a/_data/courses/GYM-020.yml +++ b/_data/courses/GYM-020.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-020.png topic: "Design" subtopics: - label: "Design Systems" -short_description: "Learn how pattern libraries and design systems can change and improve the work your teams do on a daily basis." +description: "Learn how pattern libraries and design systems can change and improve the work your teams do on a daily basis." instructor: emarcotte skills: - label: "Improving team collaboration" diff --git a/_data/courses/GYM-100.yml b/_data/courses/GYM-100.yml index 43e7e3e85..b3ac716e3 100644 --- a/_data/courses/GYM-100.yml +++ b/_data/courses/GYM-100.yml @@ -10,8 +10,8 @@ retired_message: url: /courses/GYM/100/0/about poster_art: /img/course-artwork/png/gym-100.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "Learn HTML and CSS and become the Web Designer that Developers love. Professional design experience is a prerequisite, but no prior web or coding experience is necessary." +description: "This course has been retired." +description_orig: "Learn HTML and CSS and become the Web Designer that Developers love. Professional design experience is a prerequisite, but no prior web or coding experience is necessary." instructor: jwebb skills: - label: "HTML basics" diff --git a/_data/courses/GYM-101.yml b/_data/courses/GYM-101.yml index b8304dc10..e49756901 100644 --- a/_data/courses/GYM-101.yml +++ b/_data/courses/GYM-101.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/101/0/about poster_art: /img/course-artwork/png/gym-101.png topic: "Development" -short_description: "This course has been retired." -short_description_orig: "In this course, you’ll learn best practices for building responsive websites that adapt to different devices and user behaviors." +description: "This course has been retired." +description_orig: "In this course, you’ll learn best practices for building responsive websites that adapt to different devices and user behaviors." instructor: josborn skills: - label: "HTML5 and CSS3" diff --git a/_data/courses/GYM-102.yml b/_data/courses/GYM-102.yml index bf507063a..1d20656e1 100644 --- a/_data/courses/GYM-102.yml +++ b/_data/courses/GYM-102.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-102.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "This course will teach you 5 easy techniques for adding interactivity to your web pages. By the end of the course, you’ll be able to add features and style to your web pages, from simple animations to complex dynamic content." +description: "This course will teach you 5 easy techniques for adding interactivity to your web pages. By the end of the course, you’ll be able to add features and style to your web pages, from simple animations to complex dynamic content." instructor: dporter skills: - label: "Navigation, animation, and server interaction" diff --git a/_data/courses/GYM-103.yml b/_data/courses/GYM-103.yml index c4eff024f..d9234cdad 100644 --- a/_data/courses/GYM-103.yml +++ b/_data/courses/GYM-103.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/103/0/about poster_art: /img/course-artwork/png/gym-103.png topic: "UX" -short_description: "Learn how to apply user-centered design principles to improve your website and mobile app design. A must-take course for anyone working in design and development." +description: "Learn how to apply user-centered design principles to improve your website and mobile app design. A must-take course for anyone working in design and development." instructor: jwebb skills: - label: "User research" diff --git a/_data/courses/GYM-104.yml b/_data/courses/GYM-104.yml index 4d9f44319..e310a95ab 100644 --- a/_data/courses/GYM-104.yml +++ b/_data/courses/GYM-104.yml @@ -9,7 +9,7 @@ poster_art: /img/course-artwork/png/gym-104.png topic: "Development" subtopics: - label: "JavaScript" -short_description: "Learn the fundamentals of programming with JavaScript and get started on the road to its mastery." +description: "Learn the fundamentals of programming with JavaScript and get started on the road to its mastery." instructor: kpeters skills: - label: "JavaScript" diff --git a/_data/courses/GYM-105.yml b/_data/courses/GYM-105.yml index 65d61e1e6..df1715b40 100644 --- a/_data/courses/GYM-105.yml +++ b/_data/courses/GYM-105.yml @@ -9,8 +9,8 @@ retired_message: url: /courses/GYM/105/0/about poster_art: /img/course-artwork/png/gym-105.png topic: "Career Skills" -short_description: "This course has been retired." -short_description_orig: "Learn how to write compelling content through meaningful audience research and find the right words to attract and engage users." +description: "This course has been retired." +description_orig: "Learn how to write compelling content through meaningful audience research and find the right words to attract and engage users." instructor: shay skills: - label: "Online writing strategies" diff --git a/_data/courses/GYM-106.yml b/_data/courses/GYM-106.yml index 6cff71fba..6ca99a8e9 100644 --- a/_data/courses/GYM-106.yml +++ b/_data/courses/GYM-106.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/106/0/about poster_art: /img/course-artwork/png/gym-106.png topic: "Design" -short_description: "Learn the design and visual principles needed to create effective information graphics and data visualizations." +description: "Learn the design and visual principles needed to create effective information graphics and data visualizations." instructor: groberts skills: - label: "Visual design principles" diff --git a/_data/courses/GYM-107.yml b/_data/courses/GYM-107.yml index c612d001a..22960a32e 100644 --- a/_data/courses/GYM-107.yml +++ b/_data/courses/GYM-107.yml @@ -7,7 +7,7 @@ live: true url: /courses/GYM/107/0/about poster_art: /img/course-artwork/png/gym-107.png topic: "Development" -short_description: "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS, and JavaScript." +description: "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS, and JavaScript." instructor: agustafson skills: - label: "HTML Markup" diff --git a/_data/courses/GYM-108.yml b/_data/courses/GYM-108.yml index c8d4e12bd..90a800e8c 100644 --- a/_data/courses/GYM-108.yml +++ b/_data/courses/GYM-108.yml @@ -10,7 +10,7 @@ topic: "Development" subtopics: - label: "JavaScript" - label: "jQuery" -short_description: "This course will prepare you to tackle real-world projects that require the use of jQuery and JavaScript by walking you through a number of exercises and coding examples." +description: "This course will prepare you to tackle real-world projects that require the use of jQuery and JavaScript by walking you through a number of exercises and coding examples." instructor: kchisholm skills: - label: "Developer Tools" diff --git a/_data/courses/GYM-109.yml b/_data/courses/GYM-109.yml index 2c6faf2a9..d33f41306 100644 --- a/_data/courses/GYM-109.yml +++ b/_data/courses/GYM-109.yml @@ -7,7 +7,7 @@ live: true url: /courses/course-v1:GYM+109+0/about poster_art: /img/course-artwork/png/gym-109.png topic: "Development" -short_description: "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices." +description: "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices." instructor: jpamental skills: - label: "Strategic thinking about responsive process" diff --git a/_data/hero.yml b/_data/hero.yml index 66671f419..4e6353a5f 100644 --- a/_data/hero.yml +++ b/_data/hero.yml @@ -33,4 +33,4 @@ embed_auto_play: false embed_fetchpriority: "high" embed_loading: "eager" embed_frameborder: "0" -embed_scrolling: "no" +embed_scrolling: "no" \ No newline at end of file diff --git a/_data/pages/courses.yml b/_data/pages/courses.yml index fb2235cce..b9f7904a6 100644 --- a/_data/pages/courses.yml +++ b/_data/pages/courses.yml @@ -3,25 +3,25 @@ header: banner_email_campaign: "true" title: "Courses" tagline: "Free online courses and tutorials." - short_description: "Learn design, development, UX, accessibility, and career skills from industry experts." + description: "Learn design, development, UX, accessibility, and career skills from industry experts." full_courses: format: "Full Courses" - short_description: "Full Courses include a series of video lessons, optional quizzes and assignments, and a final exam and certificate if you pass. Plus, a forum to share work and get feedback from students and teaching assistants." + description: "Full Courses include a series of video lessons, optional quizzes and assignments, and a final exam and certificate if you pass. Plus, a forum to share work and get feedback from students and teaching assistants." hero_text: "Learn new skills in a day or less and earn a certificate." hero_CTA: "View All Full Courses" promo_label: "Featured" promo_ID: "GYM-107" gym_shorts: format: "Gym Shorts" - short_description: "Gym Shorts include a series of video lessons, a final exam, and a badge if you pass." + description: "Gym Shorts include a series of video lessons, a final exam, and a badge if you pass." hero_text: "Learn new skills in a few hours and earn a badge." hero_CTA: "View All Gym Shorts" promo_label: "Featured" promo_ID: "GYM-017" take5_tutorials: format: "Take 5" - short_description: "Take 5 tutorials are 5-minute video tutorials with easy-to-follow transcripts. No homework. No exam. Just free online learning." + description: "Take 5 tutorials are 5-minute video tutorials with easy-to-follow transcripts. No homework. No exam. Just free online learning." hero_text: "Learn new skills with 5-minute tutorials." hero_CTA: "View All Tutorials" promo_label: "Featured" diff --git a/_data/take5/GYM-5001.yml b/_data/take5/GYM-5001.yml index 756a8b6a1..9ee58e69f 100644 --- a/_data/take5/GYM-5001.yml +++ b/_data/take5/GYM-5001.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: zRNUPU2dujU video_duration: "4:59" featured: false -short_description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial." +description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5002.yml b/_data/take5/GYM-5002.yml index a74401640..b6f2e5c17 100644 --- a/_data/take5/GYM-5002.yml +++ b/_data/take5/GYM-5002.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: Q66-TDbHiIs video_duration: "4:48" featured: false -short_description: "Learn how to make an image appear inside the outline of plain text using CSS in this hands-on tutorial." +description: "Learn how to make an image appear inside the outline of plain text using CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5003.yml b/_data/take5/GYM-5003.yml index 446d448fe..1ba231321 100644 --- a/_data/take5/GYM-5003.yml +++ b/_data/take5/GYM-5003.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: SaO2hO-4yEY video_duration: "4:13" featured: false -short_description: "Learn how to add a gradient overlay to an image more efficiently using only CSS in this hands-on tutorial." +description: "Learn how to add a gradient overlay to an image more efficiently using only CSS in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5004.yml b/_data/take5/GYM-5004.yml index 582daf5ff..2779013af 100644 --- a/_data/take5/GYM-5004.yml +++ b/_data/take5/GYM-5004.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: VaHkQQ5xgac video_duration: "4:34" featured: false -short_description: "Learn how to use new CSS features for modern browsers without worrying about browser incompatibilities in this hands-on tutorial." +description: "Learn how to use new CSS features for modern browsers without worrying about browser incompatibilities in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5005.yml b/_data/take5/GYM-5005.yml index ea621de77..053de73c4 100644 --- a/_data/take5/GYM-5005.yml +++ b/_data/take5/GYM-5005.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: _12cCrECCdY video_duration: "4:59" featured: false -short_description: "Learn how to turn a grayscale image into a duotone using CSS blend modes in this hands-on tutorial." +description: "Learn how to turn a grayscale image into a duotone using CSS blend modes in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5006.yml b/_data/take5/GYM-5006.yml index 98acdc2b0..3c9f6ecde 100644 --- a/_data/take5/GYM-5006.yml +++ b/_data/take5/GYM-5006.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: FfQ55Q15xUA video_duration: "4:47" featured: false -short_description: "Learn how to run a card sorting session in order to better understand your users’ mental models in this tutorial." +description: "Learn how to run a card sorting session in order to better understand your users’ mental models in this tutorial." related_content: - label: "The Pros and Cons of Card Sorting in UX Research" url: "https://www.interaction-design.org/literature/article/the-pros-and-cons-of-card-sorting-in-ux-research" diff --git a/_data/take5/GYM-5007.yml b/_data/take5/GYM-5007.yml index 5af4837b9..386431ceb 100644 --- a/_data/take5/GYM-5007.yml +++ b/_data/take5/GYM-5007.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: UDekSJsMOC8 video_duration: "4:05" featured: false -short_description: "Learn how to conduct a successful customer interview in this tutorial." +description: "Learn how to conduct a successful customer interview in this tutorial." related_content: - label: "Listening deeply. An article by Indi Young" url: "https://indiyoung.com/listening-deeply/" diff --git a/_data/take5/GYM-5008.yml b/_data/take5/GYM-5008.yml index 40928ee98..948b539d1 100644 --- a/_data/take5/GYM-5008.yml +++ b/_data/take5/GYM-5008.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: eE0rJNHvAzs video_duration: "3:48" featured: false -short_description: "Learn how to write survey questions to gather high-level information about your market in this tutorial." +description: "Learn how to write survey questions to gather high-level information about your market in this tutorial." related_content: - label: "The Essential Guide to Writing Effective Survey Questions an article by Jennifer Leigh Brown" url: "https://www.uxbooth.com/articles/the-essential-guide-to-writing-effective-survey-questions/" diff --git a/_data/take5/GYM-5009.yml b/_data/take5/GYM-5009.yml index 62ee1a5f1..ad57f5e31 100644 --- a/_data/take5/GYM-5009.yml +++ b/_data/take5/GYM-5009.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: I1uO3rwcG8U video_duration: "4:35" featured: false -short_description: "Learn how to lead a usability test in order to see how people interact with a product in this tutorial." +description: "Learn how to lead a usability test in order to see how people interact with a product in this tutorial." related_content: - label: "The Art of Guerrilla Usability Testing an article by David Peter Simon" url: "https://www.uxbooth.com/articles/the-art-of-guerrilla-usability-testing/" diff --git a/_data/take5/GYM-5010.yml b/_data/take5/GYM-5010.yml index d4aa3643a..29bb7dcb7 100644 --- a/_data/take5/GYM-5010.yml +++ b/_data/take5/GYM-5010.yml @@ -12,7 +12,7 @@ topic: "UX" video_ID: PwuPv7JwzCA video_duration: "4:50" featured: false -short_description: "Learn how to silently collaborate with a team in order to get group consensus in this tutorial." +description: "Learn how to silently collaborate with a team in order to get group consensus in this tutorial." related_content: - label: "18F Methods instructions on the KJ method" url: "https://methods.18f.gov/discover/kj-method/" diff --git a/_data/take5/GYM-5011.yml b/_data/take5/GYM-5011.yml index 621fffb2f..bca6fe7b2 100644 --- a/_data/take5/GYM-5011.yml +++ b/_data/take5/GYM-5011.yml @@ -14,7 +14,7 @@ subtopics: video_ID: VzdFLmK2t38 video_duration: "4:59" featured: false -short_description: "Learn how to use Smart Layout in Sketch in this hands-on tutorial." +description: "Learn how to use Smart Layout in Sketch in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5012.yml b/_data/take5/GYM-5012.yml index a0c985a7e..a3958748d 100644 --- a/_data/take5/GYM-5012.yml +++ b/_data/take5/GYM-5012.yml @@ -15,7 +15,7 @@ subtopics: video_ID: IqAizKPCC9U video_duration: "4:59" featured: false -short_description: "Learn the benefits of prototyping web page layouts using CSS Grid Layout in this hands-on tutorial." +description: "Learn the benefits of prototyping web page layouts using CSS Grid Layout in this hands-on tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5013.yml b/_data/take5/GYM-5013.yml index 96671df98..bed4d5f41 100644 --- a/_data/take5/GYM-5013.yml +++ b/_data/take5/GYM-5013.yml @@ -14,7 +14,7 @@ subtopics: video_ID: QxN2wVlBTTw video_duration: "4:51" featured: false -short_description: "Learn how to create animated micro-interactions using InVision Studio’s timeline feature in this hands-on tutorial." +description: "Learn how to create animated micro-interactions using InVision Studio’s timeline feature in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5014.yml b/_data/take5/GYM-5014.yml index 1490eee5f..fc1d78cae 100644 --- a/_data/take5/GYM-5014.yml +++ b/_data/take5/GYM-5014.yml @@ -14,7 +14,7 @@ subtopics: video_ID: TJqqgchPraE video_duration: "4:57" featured: false -short_description: "Learn how to use Auto-Animate in Adobe XD in this hands-on tutorial." +description: "Learn how to use Auto-Animate in Adobe XD in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5015.yml b/_data/take5/GYM-5015.yml index dd97f9c7a..57b9dccd8 100644 --- a/_data/take5/GYM-5015.yml +++ b/_data/take5/GYM-5015.yml @@ -14,7 +14,7 @@ subtopics: video_ID: fhAqswjylgg video_duration: "4:57" featured: false -short_description: "Learn how to use the Smart Animate feature to create advanced animations in Figma in this hands-on tutorial." +description: "Learn how to use the Smart Animate feature to create advanced animations in Figma in this hands-on tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5016.yml b/_data/take5/GYM-5016.yml index fe51078d4..2957ec715 100644 --- a/_data/take5/GYM-5016.yml +++ b/_data/take5/GYM-5016.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: 3WVDdGssP6Y video_duration: "4:35" featured: false -short_description: "Learn how to tell your story in a compelling way in order to advance your career in this tutorial." +description: "Learn how to tell your story in a compelling way in order to advance your career in this tutorial." related_content: - label: "The Psychological Power of Storytelling by Pamela B. Rutledge" url: "https://www.psychologytoday.com/us/blog/positively-media/201101/the-psychological-power-storytelling" diff --git a/_data/take5/GYM-5017.yml b/_data/take5/GYM-5017.yml index 63248864d..615efa762 100644 --- a/_data/take5/GYM-5017.yml +++ b/_data/take5/GYM-5017.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: ycCdyR-Oohs video_duration: "4:18" featured: false -short_description: "Learn how to have confidence in the stories you tell after making a career change in this tutorial." +description: "Learn how to have confidence in the stories you tell after making a career change in this tutorial." related_content: - label: "Story Map by James Buckhouse" url: "https://medium.com/design-story/story-map-3cc64033128e" diff --git a/_data/take5/GYM-5018.yml b/_data/take5/GYM-5018.yml index 5f7564542..62f810bee 100644 --- a/_data/take5/GYM-5018.yml +++ b/_data/take5/GYM-5018.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: iLI4I2XnjpU video_duration: "5:00" featured: false -short_description: "Learn how to create compelling stories for projects you’ve made in this tutorial." +description: "Learn how to create compelling stories for projects you’ve made in this tutorial." related_content: - label: "Finding, Crafting and Telling a Great Story - Nicole Kahn" url: "https://gsbmedia.stanford.edu/media/GuestA+Nicole+Kahn/0_jagtf4n5" diff --git a/_data/take5/GYM-5019.yml b/_data/take5/GYM-5019.yml index f11cb43b5..cb1a3bf1d 100644 --- a/_data/take5/GYM-5019.yml +++ b/_data/take5/GYM-5019.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: m1vO-v2UGmk video_duration: "4:13" featured: false -short_description: "Learn how to promote yourself via your website and social media in this tutorial." +description: "Learn how to promote yourself via your website and social media in this tutorial." related_content: - label: "Owltastic - Portfolio site by Meagan Fisher" url: "https://owltastic.com" diff --git a/_data/take5/GYM-5020.yml b/_data/take5/GYM-5020.yml index e9b5c6913..3b8788524 100644 --- a/_data/take5/GYM-5020.yml +++ b/_data/take5/GYM-5020.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: CWHSqE5Es4c video_duration: "4:59" featured: false -short_description: "Learn how to increase opportunities by understanding the types of audiences you can expect to encounter in this tutorial." +description: "Learn how to increase opportunities by understanding the types of audiences you can expect to encounter in this tutorial." related_content: - label: "How to Use Stories to Win Over Others by Jennifer Aker" url: "https://leanin.org/education/harnessing-the-power-of-stories" diff --git a/_data/take5/GYM-5021.yml b/_data/take5/GYM-5021.yml index 8b5fcf89c..301a6766e 100644 --- a/_data/take5/GYM-5021.yml +++ b/_data/take5/GYM-5021.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: qfDPi1nnHSk video_duration: "4:48" featured: false -short_description: "Learn how to add generated content to the links on a web page using CSS in this tutorial." +description: "Learn how to add generated content to the links on a web page using CSS in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5022.yml b/_data/take5/GYM-5022.yml index d6ee871df..49089ffd5 100644 --- a/_data/take5/GYM-5022.yml +++ b/_data/take5/GYM-5022.yml @@ -12,7 +12,7 @@ topic: "Design" video_ID: fOP3xEY77bc video_duration: "4:57" featured: false -short_description: "Learn how to create a pixel perfect icon in Sketch whose edges remain sharp in any scenario with this tutorial." +description: "Learn how to create a pixel perfect icon in Sketch whose edges remain sharp in any scenario with this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5023.yml b/_data/take5/GYM-5023.yml index 027ea92d1..0fa2e1303 100644 --- a/_data/take5/GYM-5023.yml +++ b/_data/take5/GYM-5023.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 1430bmqJ9xw video_duration: "4:57" featured: false -short_description: "Learn how to create a pleasing analogous color scheme using the HSL color system with this tutorial." +description: "Learn how to create a pleasing analogous color scheme using the HSL color system with this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5024.yml b/_data/take5/GYM-5024.yml index 129a3182a..f8edadfe9 100644 --- a/_data/take5/GYM-5024.yml +++ b/_data/take5/GYM-5024.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: Xb3pBj4PKxg video_duration: "4:59" featured: false -short_description: "Learn how to add CSS Media Queries in order to get started with responsive web design in this tutorial." +description: "Learn how to add CSS Media Queries in order to get started with responsive web design in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5025.yml b/_data/take5/GYM-5025.yml index bbb992acb..2b740919c 100644 --- a/_data/take5/GYM-5025.yml +++ b/_data/take5/GYM-5025.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: ZLR0rLm_zEM video_duration: "4:57" featured: false -short_description: "Learn how CSS Variables can help you speed up and simplify your development workflow in this tutorial." +description: "Learn how CSS Variables can help you speed up and simplify your development workflow in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5026.yml b/_data/take5/GYM-5026.yml index 86bd45d61..5ca96cbf3 100644 --- a/_data/take5/GYM-5026.yml +++ b/_data/take5/GYM-5026.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: ukPI1zlxKqg video_duration: "4:58" featured: false -short_description: "Learn how to get up and running with your first GitHub Pages Website in this tutorial." +description: "Learn how to get up and running with your first GitHub Pages Website in this tutorial." related_content: - label: "GitHub.com" url: "https://github.com" diff --git a/_data/take5/GYM-5027.yml b/_data/take5/GYM-5027.yml index 7d0537f42..a45ba2d1e 100644 --- a/_data/take5/GYM-5027.yml +++ b/_data/take5/GYM-5027.yml @@ -12,7 +12,7 @@ topic: "Career Skills" video_ID: AcJPrHGIIL8 video_duration: "4:59" featured: false -short_description: "Learn 3 ways to manage your work day more efficiently in this tutorial." +description: "Learn 3 ways to manage your work day more efficiently in this tutorial." related_content: - label: "Create Email Templates in Gmail" url: "https://support.google.com/a/users/answer/9308990" diff --git a/_data/take5/GYM-5028.yml b/_data/take5/GYM-5028.yml index 3483e67f0..8223c6613 100644 --- a/_data/take5/GYM-5028.yml +++ b/_data/take5/GYM-5028.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: VYhPXZvAD9k video_duration: "4:57" featured: false -short_description: "Learn how to create a theme for your dark mode users in this tutorial." +description: "Learn how to create a theme for your dark mode users in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5029.yml b/_data/take5/GYM-5029.yml index 1e6290071..b03888fed 100644 --- a/_data/take5/GYM-5029.yml +++ b/_data/take5/GYM-5029.yml @@ -14,7 +14,7 @@ subtopics: video_ID: LnPEGhE90r4 video_duration: "4:57" featured: false -short_description: "Build and animate a prototype for a simple microinteraction in Figma in this tutorial." +description: "Build and animate a prototype for a simple microinteraction in Figma in this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5030.yml b/_data/take5/GYM-5030.yml index 76d68f3e1..72cd201c1 100644 --- a/_data/take5/GYM-5030.yml +++ b/_data/take5/GYM-5030.yml @@ -14,7 +14,7 @@ subtopics: video_ID: X-uDu6Wfdfc video_duration: "4:33" featured: false -short_description: "Learn how to effectively use overlays in Figma in this tutorial." +description: "Learn how to effectively use overlays in Figma in this tutorial." project_file_source: GitHub project_files: - label: "Lesson Files" diff --git a/_data/take5/GYM-5031.yml b/_data/take5/GYM-5031.yml index b542eef10..22b4bcdd7 100644 --- a/_data/take5/GYM-5031.yml +++ b/_data/take5/GYM-5031.yml @@ -12,7 +12,7 @@ topic: "Development" video_ID: 0X4uxoKMwew video_duration: "4:59" featured: false -short_description: "Learn how to make an interactive column chart using Google Charts in this tutorial." +description: "Learn how to make an interactive column chart using Google Charts in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5032.yml b/_data/take5/GYM-5032.yml index 2bda8bcd9..697759dad 100644 --- a/_data/take5/GYM-5032.yml +++ b/_data/take5/GYM-5032.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: Y2vjyDxkIPs video_duration: "4:59" featured: false -short_description: "Learn how to get started with VoiceOver, Apple’s built-in screen reader, to read and navigate web pages in this tutorial." +description: "Learn how to get started with VoiceOver, Apple’s built-in screen reader, to read and navigate web pages in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5033.yml b/_data/take5/GYM-5033.yml index f3580f17c..7cf60c117 100644 --- a/_data/take5/GYM-5033.yml +++ b/_data/take5/GYM-5033.yml @@ -14,7 +14,7 @@ subtopics: video_ID: mmXdKhB7Ueg video_duration: "4:50" featured: false -short_description: "Learn how to design beautiful and accessible link focus states in this tutorial." +description: "Learn how to design beautiful and accessible link focus states in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5034.yml b/_data/take5/GYM-5034.yml index 167e6692a..e15a40018 100644 --- a/_data/take5/GYM-5034.yml +++ b/_data/take5/GYM-5034.yml @@ -14,7 +14,7 @@ subtopics: video_ID: fk-eu9TmFNk video_duration: "4:58" featured: false -short_description: "Learn how to set flexible and accessible type sizes for a more user-friendly web in this tutorial." +description: "Learn how to set flexible and accessible type sizes for a more user-friendly web in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5035.yml b/_data/take5/GYM-5035.yml index 1aa5f58ab..a6365abce 100644 --- a/_data/take5/GYM-5035.yml +++ b/_data/take5/GYM-5035.yml @@ -14,7 +14,7 @@ subtopics: video_ID: m1_iOLbtEFM video_duration: "4:59" featured: false -short_description: "Learn how to responsively spice up your designs with viewport units in this tutorial." +description: "Learn how to responsively spice up your designs with viewport units in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5036.yml b/_data/take5/GYM-5036.yml index f6654d1ea..4becb1781 100644 --- a/_data/take5/GYM-5036.yml +++ b/_data/take5/GYM-5036.yml @@ -14,7 +14,7 @@ subtopics: video_ID: nt7p3CuxUzA video_duration: "4:55" featured: false -short_description: "Learn how to create visually compelling and accessible drop caps on the web in this tutorial." +description: "Learn how to create visually compelling and accessible drop caps on the web in this tutorial." project_file_source: CodePen project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5037.yml b/_data/take5/GYM-5037.yml index 918c545ad..39b29c596 100644 --- a/_data/take5/GYM-5037.yml +++ b/_data/take5/GYM-5037.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: qfdOIriWM90 video_duration: "3:52" featured: false -short_description: "Learn how to leverage the inherent accessibility of HTML documents in this tutorial." +description: "Learn how to leverage the inherent accessibility of HTML documents in this tutorial." related_content: - label: "HTML: A good basis for accessibility" url: "https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML" diff --git a/_data/take5/GYM-5038.yml b/_data/take5/GYM-5038.yml index 3a961bcbc..eeeba54cc 100644 --- a/_data/take5/GYM-5038.yml +++ b/_data/take5/GYM-5038.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: 9ylBqOnEXos video_duration: "4:39" featured: false -short_description: "Learn how to make the headings and lists in your HTML documents more accessible for everyone in this tutorial." +description: "Learn how to make the headings and lists in your HTML documents more accessible for everyone in this tutorial." related_content: - label: "Accessibility Tutorials: Headings" url: "https://www.w3.org/WAI/tutorials/page-structure/headings/" diff --git a/_data/take5/GYM-5039.yml b/_data/take5/GYM-5039.yml index 535fdcc42..e02cf11a9 100644 --- a/_data/take5/GYM-5039.yml +++ b/_data/take5/GYM-5039.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: npto50RJpDc video_duration: "4:28" featured: false -short_description: "Learn how to make the data tables in your HTML documents more accessible for everyone in this tutorial." +description: "Learn how to make the data tables in your HTML documents more accessible for everyone in this tutorial." project_file_source: CodePen project_files: - label: "Completed Project" diff --git a/_data/take5/GYM-5040.yml b/_data/take5/GYM-5040.yml index 5787436c2..29ba4a664 100644 --- a/_data/take5/GYM-5040.yml +++ b/_data/take5/GYM-5040.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: CizNbSuRRew video_duration: "4:20" featured: false -short_description: "Learn best practices for using alt text to improve the accessibility of the images on your website in this tutorial." +description: "Learn best practices for using alt text to improve the accessibility of the images on your website in this tutorial." related_content: - label: "When Not to use alt attributes" url: "https://www.sitepoint.com/the-hidden-nuggets-of-wcag2-when-not-to-use-alt-attributes/" diff --git a/_data/take5/GYM-5041.yml b/_data/take5/GYM-5041.yml index d603fb325..537ff9149 100644 --- a/_data/take5/GYM-5041.yml +++ b/_data/take5/GYM-5041.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: iyzPK-Mz_CY video_duration: "4:13" featured: false -short_description: "Learn how to write alt text for more complex image use, such as charts, graphs, and image links in this tutorial." +description: "Learn how to write alt text for more complex image use, such as charts, graphs, and image links in this tutorial." related_content: - label: "Complex Images Tutorial" url: "https://www.w3.org/WAI/tutorials/images/complex/" diff --git a/_data/take5/GYM-5042.yml b/_data/take5/GYM-5042.yml index dc3da0f8a..0679f7b06 100644 --- a/_data/take5/GYM-5042.yml +++ b/_data/take5/GYM-5042.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: z1z-kfVtFpk video_duration: "4:40" featured: false -short_description: "Take the guesswork out of designing for color blindness and learn how to improve the accessibility of your websites in this tutorial." +description: "Take the guesswork out of designing for color blindness and learn how to improve the accessibility of your websites in this tutorial." related_content: - label: "Coblis - Color Blindness Simulator" url: "https://www.color-blindness.com/coblis-color-blindness-simulator/" diff --git a/_data/take5/GYM-5043.yml b/_data/take5/GYM-5043.yml index b351a83c0..59a29157c 100644 --- a/_data/take5/GYM-5043.yml +++ b/_data/take5/GYM-5043.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: 7Q1bVzu0KxE video_duration: "3:36" featured: false -short_description: "Discover how to identify whether the colors on your website have sufficient contrast between text color and its background in this tutorial." +description: "Discover how to identify whether the colors on your website have sufficient contrast between text color and its background in this tutorial." related_content: - label: "WebAIM: Contrast Checker" url: "https://webaim.org/resources/contrastchecker/" diff --git a/_data/take5/GYM-5044.yml b/_data/take5/GYM-5044.yml index 98f771427..8699faa0e 100644 --- a/_data/take5/GYM-5044.yml +++ b/_data/take5/GYM-5044.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 72nrJJAf_Ak video_duration: "4:43" featured: false -short_description: "Learn how to make sure everyone can complete the forms on your website and learn how to properly use the label element in this tutorial." +description: "Learn how to make sure everyone can complete the forms on your website and learn how to properly use the label element in this tutorial." related_content: - label: "Labeling Controls" url: "https://www.w3.org/WAI/tutorials/forms/labels/" diff --git a/_data/take5/GYM-5045.yml b/_data/take5/GYM-5045.yml index a191b480c..76b98fe26 100644 --- a/_data/take5/GYM-5045.yml +++ b/_data/take5/GYM-5045.yml @@ -15,7 +15,7 @@ subtopics: video_ID: m3M7QbDE3Lg video_duration: "4:33" featured: false -short_description: "Forms are a frequent source of accessibility problems on websites. Learn some tips and tricks on how to make your web forms easier to use and understand in this tutorial." +description: "Forms are a frequent source of accessibility problems on websites. Learn some tips and tricks on how to make your web forms easier to use and understand in this tutorial." related_content: - label: "Validating Input" url: "https://www.w3.org/WAI/tutorials/forms/validation/" diff --git a/_data/take5/GYM-5046.yml b/_data/take5/GYM-5046.yml index 997b2f052..7c2bf8363 100644 --- a/_data/take5/GYM-5046.yml +++ b/_data/take5/GYM-5046.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: mCIFslxi1yU video_duration: "4:44" featured: false -short_description: "With more video and audio being published online than ever before, it’s critical to make this content as accessible as possible. Learn strategies for improving multimedia accessibility on your websites in this tutorial." +description: "With more video and audio being published online than ever before, it’s critical to make this content as accessible as possible. Learn strategies for improving multimedia accessibility on your websites in this tutorial." related_content: - label: "Audio Description for the Blind (Video)" url: "https://accessibility.psu.edu/video/audiodescription/" diff --git a/_data/take5/GYM-5047.yml b/_data/take5/GYM-5047.yml index d428e3195..69edea0eb 100644 --- a/_data/take5/GYM-5047.yml +++ b/_data/take5/GYM-5047.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: TpvlucvoUPw video_duration: "4:38" featured: false -short_description: "A few of the most common animation techniques used on the web can make users affected by motion dizzy or even sick. Learn how to avoid these techniques in this tutorial." +description: "A few of the most common animation techniques used on the web can make users affected by motion dizzy or even sick. Learn how to avoid these techniques in this tutorial." related_content: - label: "Designing Safer Web Animation For Motion Sensitivity" url: "https://alistapart.com/article/designing-safer-web-animation-for-motion-sensitivity/" diff --git a/_data/take5/GYM-5048.yml b/_data/take5/GYM-5048.yml index 27a3746ac..9cb994a59 100644 --- a/_data/take5/GYM-5048.yml +++ b/_data/take5/GYM-5048.yml @@ -12,7 +12,7 @@ topic: "Accessibility" video_ID: Njn6CQwiafQ video_duration: "3:41" featured: false -short_description: "You don’t have to forgo animation entirely to accommodate users with disabilities. Learn how to ensure that animated elements won’t compromise the accessibility of your website in this tutorial." +description: "You don’t have to forgo animation entirely to accommodate users with disabilities. Learn how to ensure that animated elements won’t compromise the accessibility of your website in this tutorial." related_content: - label: "An Introduction to the Reduced Motion Media Query" url: "https://css-tricks.com/introduction-reduced-motion-media-query/" diff --git a/_data/take5/GYM-5049.yml b/_data/take5/GYM-5049.yml index fb07239cb..a1f3631db 100644 --- a/_data/take5/GYM-5049.yml +++ b/_data/take5/GYM-5049.yml @@ -14,7 +14,7 @@ subtopics: video_ID: ohEtP5MuWFk video_duration: "4:59" featured: false -short_description: "Variants make working with components in Figma easier and more intuitive to use. Learn how to get up and running with the fundamentals of variants in this tutorial." +description: "Variants make working with components in Figma easier and more intuitive to use. Learn how to get up and running with the fundamentals of variants in this tutorial." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5050.yml b/_data/take5/GYM-5050.yml index 819379637..45446bf4c 100644 --- a/_data/take5/GYM-5050.yml +++ b/_data/take5/GYM-5050.yml @@ -14,7 +14,7 @@ subtopics: video_ID: 5wvVjAZgf0Y video_duration: "4:59" featured: false -short_description: "Learn the fundamentals of Auto Layout in Figma to design responsive interfaces, components, and even entire layouts." +description: "Learn the fundamentals of Auto Layout in Figma to design responsive interfaces, components, and even entire layouts." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5051.yml b/_data/take5/GYM-5051.yml index beb380342..28613e65f 100644 --- a/_data/take5/GYM-5051.yml +++ b/_data/take5/GYM-5051.yml @@ -14,7 +14,7 @@ subtopics: video_ID: UYsT7xAhQZM video_duration: "4:55" featured: false -short_description: "Learn advanced Auto Layout techniques in Figma such as alignment, distribution, resizing, and nesting to create complex interfaces." +description: "Learn advanced Auto Layout techniques in Figma such as alignment, distribution, resizing, and nesting to create complex interfaces." project_file_source: Figma Community project_files: - label: "Starting Project" diff --git a/_data/take5/GYM-5052.yml b/_data/take5/GYM-5052.yml index 28d4c79d2..3179d1c46 100644 --- a/_data/take5/GYM-5052.yml +++ b/_data/take5/GYM-5052.yml @@ -14,7 +14,7 @@ subtopics: video_ID: Q2dafEXRx_s video_duration: "4:35" featured: false -short_description: "In this tutorial, you’ll learn three ways to make a great first impression with your online portfolio and improve your chances of getting hired." +description: "In this tutorial, you’ll learn three ways to make a great first impression with your online portfolio and improve your chances of getting hired." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5053.yml b/_data/take5/GYM-5053.yml index f4d541628..f016200ac 100644 --- a/_data/take5/GYM-5053.yml +++ b/_data/take5/GYM-5053.yml @@ -14,7 +14,7 @@ subtopics: video_ID: DgungAdVLPA video_duration: "4:52" featured: false -short_description: "In this tutorial, you’ll learn three ways to create a compelling and unique About page for your online portfolio." +description: "In this tutorial, you’ll learn three ways to create a compelling and unique About page for your online portfolio." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index 754e974c5..7d084dc4f 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -29,4 +29,4 @@ related_content: - label: "Gymnasium: Crafting a Concise About Page" url: "https://thegymnasium.com/courses/take5/crafting-a-concise-about-page" skill_level: "Beginner" ---- +--- \ No newline at end of file diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index 9a62d2e15..ce8b903e6 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -2,7 +2,7 @@ event_ID: web0001-designing-for-understanding event_title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" -short_description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." +description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." permalink: /webinars/designing-for-understanding event_date: 2016-04-27 event_time: "2PM EDT" diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index 71f37a586..b0dbfa899 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -2,7 +2,7 @@ event_ID: web0002-designing-for-real-people event_title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" -short_description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." +description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." permalink: /webinars/designing-for-real-people event_date: 2016-06-01 event_time: "2PM EDT" diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index 88838e8d2..ca9f31be5 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -2,7 +2,7 @@ event_ID: web0003-right-sizing-your-rapid-prototypes event_title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" -short_description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." +description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." permalink: /webinars/right-sizing-your-rapid-prototypes event_date: 2016-08-17 event_time: "2PM EDT" diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index db3e0358a..cafa5c56d 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -2,7 +2,7 @@ event_ID: web0004-web-design-is-hard event_title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" -short_description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." +description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." permalink: /webinars/web-design-is-hard event_date: 2016-09-21 event_time: "2PM EDT" diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index 0a6843208..d9669b509 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -2,7 +2,7 @@ event_ID: web0005-state-of-responsive-web-design event_title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" -short_description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." +description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." permalink: /webinars/state-of-responsive-web-design event_date: 2016-12-08 event_time: "2PM EDT" diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index 55d2452cf..9b4f673f6 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -2,7 +2,7 @@ event_ID: web0006-keeping-up-with-javascript event_title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" -short_description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." +description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." permalink: /webinars/keeping-up-with-javascript event_date: 2017-03-22 event_time: "2PM EDT" diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 5ea816902..4e338f350 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -2,7 +2,7 @@ event_ID: web0007-design-systems-and-creativity event_title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" -short_description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." +description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." permalink: /webinars/design-systems-and-creativity event_date: 2017-07-17 event_time: "2PM EDT" diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index b0b86f3f0..a3dd21794 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -2,7 +2,7 @@ event_ID: web0008-rethinking-full-stack event_title: "Rethinking Full Stack:
    Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" -short_description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." +description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." permalink: /webinars/rethinking-full-stack event_date: 2017-11-09 event_time: "2PM EST" diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index bdb3888b3..490a5e1ec 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -2,7 +2,7 @@ event_ID: web0009-future-of-web-layout event_title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" -short_description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." +description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." permalink: /webinars/future-of-web-layout date: 2018-02-05 event_date: 2018-03-13 diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index 35d6c889b..46cce1784 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -2,7 +2,7 @@ event_ID: web0010-planning-before-pixels event_title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" -short_description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." +description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." permalink: /webinars/planning-before-pixels date: 2018-11-20 event_date: 2018-12-11 diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 9a0bec663..5da0201b1 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -2,7 +2,7 @@ event_ID: web0011-prototyping-as-process event_title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" -short_description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." +description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." permalink: /webinars/prototyping-as-process event_date: 2019-05-14 event_time: "2:00 PM EDT" diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index 7d8793dec..c5b079a91 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -2,7 +2,7 @@ event_ID: web0012-remote-work event_title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" -short_description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." +description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." permalink: /webinars/remote-work event_date: 2020-03-17 event_time: "3:00 PM EDT" diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index f8149d235..62c216486 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -2,7 +2,7 @@ event_ID: web0013-decade-of-responsive-web-design event_title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" -short_description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." +description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." permalink: /webinars/decade-of-responsive-web-design event_date: 2020-05-26 event_time: "2:00 PM EDT" diff --git a/_data/workshops/GYM-700.yml b/_data/workshops/GYM-700.yml index 8b6c04b8a..983111c84 100644 --- a/_data/workshops/GYM-700.yml +++ b/_data/workshops/GYM-700.yml @@ -8,7 +8,7 @@ url: /courses/GYM/700/0/about poster_art: /img/course-artwork/png/gym-700.png live: false topic: "Career Skills" -short_description: "This workshop will teach students how to create an outstanding portfolio using content strategy and storytelling skills. Students will leave with actionable next steps to improve their portfolio." +description: "This workshop will teach students how to create an outstanding portfolio using content strategy and storytelling skills. Students will leave with actionable next steps to improve their portfolio." long_description: - label: "Students will learn how to effectively showcase their work through collaborative exercises and assignments — including coaching from expert instructors and feedback from fellow students." - label: "Pro Tip: You don’t need to wait until you’re looking for a new job to fine-tune your portfolio." diff --git a/_data/workshops/homepage.yml b/_data/workshops/homepage.yml index a27ddefba..55ae15c94 100644 --- a/_data/workshops/homepage.yml +++ b/_data/workshops/homepage.yml @@ -2,5 +2,5 @@ main: title: "Workshops" tagline: "Intensive learning in small sessions." - short_description: "Practical in-person, remote, and virtual workshops." + description: "Practical in-person, remote, and virtual workshops." --- diff --git a/_includes/courses/featured/full-courses.html b/_includes/courses/featured/full-courses.html index bbd700e86..a1aedc810 100644 --- a/_includes/courses/featured/full-courses.html +++ b/_includes/courses/featured/full-courses.html @@ -24,7 +24,7 @@

    -

    {{ courses[featured.full_courses.promo_1.ID].short_description }}

    +

    {{ courses[featured.full_courses.promo_1.ID].description }}

    {{ featured.full_courses.promo_1.CTA }} @@ -58,7 +58,7 @@

    -

    {{ courses[featured.full_courses.promo_2.ID].short_description }}

    +

    {{ courses[featured.full_courses.promo_2.ID].description }}

    {{ featured.full_courses.promo_2.CTA }} @@ -92,7 +92,7 @@

    -

    {{ courses[featured.full_courses.promo_3.ID].short_description }}

    +

    {{ courses[featured.full_courses.promo_3.ID].description }}

    {{ featured.full_courses.promo_3.CTA }} diff --git a/_includes/courses/featured/gym-shorts.html b/_includes/courses/featured/gym-shorts.html index ceaa34528..c8b1c84b1 100644 --- a/_includes/courses/featured/gym-shorts.html +++ b/_includes/courses/featured/gym-shorts.html @@ -24,7 +24,7 @@

    -

    {{ courses[featured.gym_shorts.promo_1.ID].short_description }}

    +

    {{ courses[featured.gym_shorts.promo_1.ID].description }}

    {{ featured.gym_shorts.promo_1.CTA }} @@ -58,7 +58,7 @@

    -

    {{ courses[featured.gym_shorts.promo_2.ID].short_description }}

    +

    {{ courses[featured.gym_shorts.promo_2.ID].description }}

    \ No newline at end of file diff --git a/_includes/home/featured-courses.html b/_includes/home/featured-courses.html index c1c86b8f8..b8f0a63b4 100644 --- a/_includes/home/featured-courses.html +++ b/_includes/home/featured-courses.html @@ -20,7 +20,7 @@ {%- assign topic = site.data.courses[featured].topic -%} {%- assign url = site.data.courses[featured].url -%} {%- assign title = site.data.courses[featured].title -%} - {%- assign description = site.data.courses[featured].short_description -%} + {%- assign description = site.data.courses[featured].description -%} {%- if site.data.courses[featured].topic == "Design" -%} {%- assign content_class = "design" -%} diff --git a/_includes/partials/meta/logic-courses.html b/_includes/partials/meta/logic-courses.html index 523e9cf73..8c9daacd0 100644 --- a/_includes/partials/meta/logic-courses.html +++ b/_includes/partials/meta/logic-courses.html @@ -2,7 +2,7 @@ Set up meta tags for full and short courses {%- endcomment -%} {%- assign course = site.data.courses[id] -%} -{%- assign og_description = course.short_description -%} +{%- assign og_description = course.description -%} {%- assign og_url = course.url -%} {%- assign og_title = course.title -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} diff --git a/_includes/partials/meta/logic-take5.html b/_includes/partials/meta/logic-take5.html index 793f87867..6da6bc6bc 100644 --- a/_includes/partials/meta/logic-take5.html +++ b/_includes/partials/meta/logic-take5.html @@ -2,7 +2,7 @@ Set up meta tags for a Take 5 meta include {%- endcomment -%} {%- assign course = site.data.take5[id] -%} -{%- assign og_description = course.short_description -%} +{%- assign og_description = course.description -%} {%- assign og_title = course.title -%} {%- assign og_url = course.title | slugify | prepend: "/courses/take5/" -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} diff --git a/_includes/partials/meta/logic-webinars.html b/_includes/partials/meta/logic-webinars.html index 885de92b4..99e00472b 100644 --- a/_includes/partials/meta/logic-webinars.html +++ b/_includes/partials/meta/logic-webinars.html @@ -2,7 +2,7 @@ Set up meta tags for a webinar meta include {%- endcomment -%} {%- assign event = site.data.webinars[id] -%} -{%- assign og_description = event.short_description | strip_html -%} +{%- assign og_description = event.description | strip_html -%} {%- if event.event_ID == "web0005-state-of-responsive-web-design" -%} {%- assign og_url = "https://thegymnasium.com/webinars/state-of-responsive-web-design" -%} {%- assign og_title = event.event_title -%} diff --git a/_includes/take5/catalog-topic-group.html b/_includes/take5/catalog-topic-group.html index 3808811bf..caf3819d4 100644 --- a/_includes/take5/catalog-topic-group.html +++ b/_includes/take5/catalog-topic-group.html @@ -29,7 +29,7 @@

    {{ item.title }}

    -

    {{ item.short_description }}

    +

    {{ item.description }}

    @@ -25,7 +25,7 @@

    {{ workshop.title }}

    {{ workshop.datetime }}

    -

    {{ workshop.short_description}}

    +

    {{ workshop.description}}

    {%- for description in workshop.long_description -%}

    {{ description.label }}

    @@ -87,4 +87,4 @@

    {{ josborn.name}}

    -
    \ No newline at end of file + diff --git a/_layouts/take5-raw.html b/_layouts/take5-raw.html index 915e5371b..db6f17da6 100644 --- a/_layouts/take5-raw.html +++ b/_layouts/take5-raw.html @@ -41,7 +41,7 @@

    {{ course.title }}

    with {{ course.instructor }}, {{ course.instructor_bio }}

    {% endif %} -

    {{ course.short_description }}

    +

    {{ course.description }}

    {% include take5/video.html video_ID=course.video_ID %} diff --git a/_layouts/webinar.html b/_layouts/webinar.html index 50787359a..884ab7281 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -9,7 +9,7 @@ event_title: {{ webinar.event_title | strip_html }} event_guests: {{ webinar.event_guests | strip_html }} page_title: {{ webinar.page_title | strip_html }} -short_description: {{ webinar.short_description | strip_html }} +description: {{ webinar.description | strip_html }} event_date: {{ webinar.event_date }} event_time: {{ webinar.event_time }} event_ogimage: {{ webinar.event_ogimage }} @@ -65,7 +65,7 @@

    {{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% endif %} -

    {{ webinar.short_description }}

    +

    {{ webinar.description }}

    {% if webinar.register %} {% include webinar-registration-form.html %} diff --git a/courses/full/course-list-recent.html b/courses/full/course-list-recent.html index 48f1d8599..8c732d8f4 100644 --- a/courses/full/course-list-recent.html +++ b/courses/full/course-list-recent.html @@ -60,7 +60,7 @@

    {{ course.topic }}

    {{ course.title }}

    - {{ course.short_description }} + {{ course.description }}

    diff --git a/courses/full/index.html b/courses/full/index.html index 6c9c7a75e..24e848d56 100644 --- a/courses/full/index.html +++ b/courses/full/index.html @@ -20,7 +20,7 @@

    {{ main.full_courses.format }}

    Free online full courses. Earn a certificate in a day or less. - {{ main.short_description }} + {{ main.description }}

    diff --git a/courses/gym-shorts/course-list-recent.html b/courses/gym-shorts/course-list-recent.html index e140a8790..45c5eb3db 100644 --- a/courses/gym-shorts/course-list-recent.html +++ b/courses/gym-shorts/course-list-recent.html @@ -60,7 +60,7 @@

    {{ course.topic }}

    {{ course.title }}

    - {{ course.short_description }} + {{ course.description }}

    diff --git a/courses/gym-shorts/index.html b/courses/gym-shorts/index.html index bc7f0f43f..32a4e68f1 100644 --- a/courses/gym-shorts/index.html +++ b/courses/gym-shorts/index.html @@ -20,7 +20,7 @@

    {{ main.gym_shorts.format }}

    Free online short courses. Earn a badge in a few hours. - {{ main.short_description }} + {{ main.description }}

    diff --git a/courses/index.html b/courses/index.html index 65f959e51..d9818bcb8 100644 --- a/courses/index.html +++ b/courses/index.html @@ -288,4 +288,4 @@

    {%- if jekyll.environment == "local" -%} {%- include partials/test-bottom.html -%} -{%- endif -%} +{%- endif -%} \ No newline at end of file diff --git a/courses/take5/course-list-recent.html b/courses/take5/course-list-recent.html index 2afd4819f..09579f3be 100644 --- a/courses/take5/course-list-recent.html +++ b/courses/take5/course-list-recent.html @@ -56,7 +56,7 @@

    {{ course.topic }}

    {{ course.title }}

    - {{ course.short_description }} + {{ course.description }}

    diff --git a/courses/take5/index.html b/courses/take5/index.html index 47ce9a3c6..daf36e280 100644 --- a/courses/take5/index.html +++ b/courses/take5/index.html @@ -16,7 +16,7 @@

    {{ main.take5_tutorials.format }}

    -

    Free online video tutorials. Practical skills in 5 minutes. {{ main.short_description }}

    +

    Free online video tutorials. Practical skills in 5 minutes. {{ main.description }}

    {{ about.lists[1] }}
    @@ -72,7 +72,7 @@

    {{ main.take5_tutorials.format }}

    {%- if site.data.take5[item].featured == true -%} {%- assign featured = site.data.take5[item].course_ID -%} {%- assign featured_title = site.data.take5[item].title -%} - {%- assign featured_description = site.data.take5[item].short_description -%} + {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} {%- assign featured_instructor = site.data.take5[item].instructor -%} {%- assign featured_instructor_bio = site.data.take5[item].instructor_bio -%} diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index 86276fd28..c86899521 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -60,7 +60,7 @@

    {{ course.topic }}

    {{ course.title }}

    - {{ course.short_description }} + {{ course.description }}

    diff --git a/docs/README.md b/docs/README.md index 77101c924..598b480ad 100644 --- a/docs/README.md +++ b/docs/README.md @@ -34,7 +34,7 @@ topic: "Design & Development" # MUST be quoted video_ID: zRNUPU2dujU # YouTube video ID video_duration: "4:59" # Must be quoted featured: true # Toggle for display in catalog and hero -short_description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." +description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." project_file_source: Codepen # Required if there are project files project_files: - label: "Starting Project" @@ -69,7 +69,7 @@ topic: video_ID: video_duration: "0:00" featured: false -short_description: +description: project_file_source: project_files: - label: diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html index d0a1984de..4426dc4d9 100644 --- a/feeds/_partials/courses.html +++ b/feeds/_partials/courses.html @@ -1,7 +1,7 @@ {%- assign list = site.data.courses | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'course_ID', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html index 747964dfa..df6fa3e88 100644 --- a/feeds/_partials/tutorials.html +++ b/feeds/_partials/tutorials.html @@ -1,7 +1,7 @@ {%- assign list = site.data.take5 | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'course_ID', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html index bfb08d3d5..007fe12e6 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.html @@ -1,7 +1,7 @@ {%- assign list = site.data.webinars | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'short_description', 'description' -%} + {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'event_title', 'title' -%} diff --git a/feeds/featured-courses.html b/feeds/featured-courses.html index 92e76bd06..f9ba3bd96 100644 --- a/feeds/featured-courses.html +++ b/feeds/featured-courses.html @@ -44,7 +44,7 @@ {"title": "{{ site.data.courses[featured].title }}", "url": "{{ site.data.courses[featured].url | prepend: "https://thegymnasium.com" }}", - "description": "{{ site.data.courses[featured].short_description }}", + "description": "{{ site.data.courses[featured].description }}", "instructor_name": "{{ instructor_name }}", "instructor_title": "{{ instructor_title }}", "artwork": ["{{ artwork_svg | prepend: artwork_path_svg diff --git a/feeds/webinars.json b/feeds/webinars.json index baa4e99a3..2abd26658 100644 --- a/feeds/webinars.json +++ b/feeds/webinars.json @@ -26,7 +26,7 @@ permalink: /feeds/webinars.json {%- assign data = site.data.webinars[webinar] -%} {%- assign title = data.event_title | strip_html -%} - {%- assign description = data.short_description | strip_html -%} + {%- assign description = data.description | strip_html -%} {%- assign decolonized_webinar_title = title | split: ":" -%} {%- assign webinar_title = decolonized_webinar_title[0] -%} {%- assign webinar_subtitle = decolonized_webinar_title[1] -%} @@ -40,7 +40,7 @@ permalink: /feeds/webinars.json "slug": "{{ data.permalink | replace: '/webinars/', '' }}", "category": "{{ data.content_category }}", "date": "{{ data.event_date }}", - "description": "{{ data.short_description | strip_html }}", + "description": "{{ data.description | strip_html }}", "host": "{{ data.host }}", "event_ogimage": "/img/social/webinars/{{ data.event_ogimage }}", "recording_ogimage": "/img/social/webinars/{{ data.recording_ogimage }}", diff --git a/hub-pages/collections/collections.html b/hub-pages/collections/collections.html index ec3a910d9..179ebf396 100644 --- a/hub-pages/collections/collections.html +++ b/hub-pages/collections/collections.html @@ -28,7 +28,7 @@

    {{ main.collections.format | prepend: 'Content ' }}

    {{ hub_page.title }}

    -

    {{ hub_page.short_description }}

    +

    {{ hub_page.description }}

    diff --git a/take5/catalog-blitz.html b/take5/catalog-blitz.html index 05e1abe93..41f40cfb6 100644 --- a/take5/catalog-blitz.html +++ b/take5/catalog-blitz.html @@ -56,7 +56,7 @@

    Take 5

    {%- if site.data.take5[item].featured == true -%} {%- assign featured = site.data.take5[item].course_ID -%} {%- assign featured_title = site.data.take5[item].title -%} - {%- assign featured_description = site.data.take5[item].short_description -%} + {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} {%- assign featured_instructor = site.data.take5[item].instructor -%} {%- assign featured_topic = site.data.take5[item].topic -%} diff --git a/take5/catalog-debug.html b/take5/catalog-debug.html index b7ff171c4..21168565c 100644 --- a/take5/catalog-debug.html +++ b/take5/catalog-debug.html @@ -30,7 +30,7 @@

    {{ item.title }}

  • Video Duration: {{ item.video_duration }}
  • Instructor: {{ item.instructor }}
  • Topic: {{ item.topic }}
  • -
  • Short Description: {{ item.short_description | strip_html }}
  • +
  • Description: {{ item.description | strip_html }}
  • diff --git a/tests/bios.html b/tests/bios.html index d8bf165b3..2d52b14ee 100644 --- a/tests/bios.html +++ b/tests/bios.html @@ -12,7 +12,7 @@ Name Headshot - Short Description + Description Length {% for people in instructors %} diff --git a/tests/catalog/full-lister.html b/tests/catalog/full-lister.html index aeeeb120d..4a88d9db0 100644 --- a/tests/catalog/full-lister.html +++ b/tests/catalog/full-lister.html @@ -18,7 +18,7 @@

    {{ item.title }}

    Production URL: {{ item.course_ID }}
    Course Artwork PNG: {{ png_path | prepend: site.url }}
    Course Artwork SVG: {{ svg_path | prepend: site.url }}
    -
    Short Description: {{ item.short_description }}
    +
    Description: {{ item.description }}
    Skills Covered
    {%- for skill in item.skills -%} @@ -44,7 +44,7 @@

    Take 5

    {%- if item.live -%}

    {{ item.title }}

    Course ID: {{ item.course_ID }}
    -
    Short Description: {{ item.short_description }}
    +
    Description: {{ item.description }}
    URL: {{ item.title | slugify | prepend: take5_path }}
    Poster Art: {{ item.poster_art | prepend: site.url }}
    {%- endif -%} diff --git a/tests/catalog/test-lister.html b/tests/catalog/test-lister.html index 397862e2e..df31d77a1 100644 --- a/tests/catalog/test-lister.html +++ b/tests/catalog/test-lister.html @@ -14,7 +14,7 @@ Course ID Title - Short Description + Description Length @@ -30,11 +30,11 @@ {{ item.title }} {% endif %} - - {{ item.short_description | truncate: 160 }} + + {{ item.description | truncate: 160 }} - - {{ item.short_description | size }} + + {{ item.description | size }} {% endfor %} diff --git a/tests/featurer.html b/tests/featurer.html index ca897db49..30ac4a76c 100644 --- a/tests/featurer.html +++ b/tests/featurer.html @@ -46,7 +46,7 @@ {"title": "{{ site.data.courses[featured].title }}", "url": "{{ site.data.courses[featured].url }}", - "description": "{{ site.data.courses[featured].short_description }}", + "description": "{{ site.data.courses[featured].description }}", "instructor_name": "{{ instructor_name }}", "instructor_title": "{{ instructor_title }}", "artwork": ["{{ artwork_svg | prepend: artwork_path_svg diff --git a/tests/take5/take5-content-test.html b/tests/take5/take5-content-test.html index c3d8cceea..05508aa47 100644 --- a/tests/take5/take5-content-test.html +++ b/tests/take5/take5-content-test.html @@ -62,7 +62,7 @@

    WARNING: There are {{ feature_count }} featured items!

    Date Video ID Video Duration - Short Description + Description Meta Partial? Poster Art @@ -127,9 +127,9 @@

    WARNING: There are {{ feature_count }} featured items!

    {{ item.video_duration }} {% endif %} - - {% if item.short_description == null %}MISSING VALUE{% else %} - {% assign this_description = item.short_description | strip_html %} + + {% if item.description == null %}MISSING VALUE{% else %} + {% assign this_description = item.description | strip_html %} {% if this_description contains "lorem" or this_description contains "ipsum" %} May contain placeholder text! ({{this_description | size }} chars){% else %} true ({{this_description | size }} chars) diff --git a/tests/take5/take5-lister.html b/tests/take5/take5-lister.html index 854bb2328..a83247b0b 100644 --- a/tests/take5/take5-lister.html +++ b/tests/take5/take5-lister.html @@ -14,7 +14,7 @@ Course ID Title - Short Description + Description {% for take5_hash in sorted_catalog %} @@ -29,8 +29,8 @@ {{ item.title }} {% endif %} - - {{ item.short_description }} + + {{ item.description }} {% endfor %} diff --git a/webinars/index.html b/webinars/index.html index 3db4a31e5..3daaa27f9 100644 --- a/webinars/index.html +++ b/webinars/index.html @@ -56,7 +56,7 @@

    Webinars

    {{ item.content_category }}

    {{ webinar_title }}{% if webinar_subtitle %}: {{ webinar_subtitle }}{%- endif -%}

    {%- if item.register -%} -

    {{ item.short_description }}

    +

    {{ item.description }}

    Live streaming on {{ item.event_date | date: "%A, %B %-d, %Y at " }}{{ item.event_time }}

    {%- endif -%} From a330db4e89f550f49861c340333c4aabdeb1f9f2 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:23:35 -0400 Subject: [PATCH 35/67] replace `event_title` with `title` --- _data/webinars/web0001-designing-for-understanding.yml | 2 +- _data/webinars/web0002-designing-for-real-people.yml | 2 +- _data/webinars/web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- _data/webinars/web0005-state-of-responsive-web-design.yml | 2 +- _data/webinars/web0006-keeping-up-with-javascript.yml | 2 +- _data/webinars/web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- _data/webinars/web0013-decade-of-responsive-web-design.yml | 2 +- _includes/partials/meta/logic-webinars.html | 4 ++-- _layouts/webinar.html | 4 ++-- feeds/_partials/webinars.html | 2 +- feeds/webinars.json | 2 +- tests/webinars/webinars-test.html | 2 +- webinars/index.html | 2 +- 19 files changed, 21 insertions(+), 21 deletions(-) diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index ce8b903e6..b95f6e809 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -1,6 +1,6 @@ --- event_ID: web0001-designing-for-understanding -event_title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" +title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." permalink: /webinars/designing-for-understanding diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index b0dbfa899..2d13fbae0 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -1,6 +1,6 @@ --- event_ID: web0002-designing-for-real-people -event_title: "Designing for Real People: Making the Case for Meaningful UX" +title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." permalink: /webinars/designing-for-real-people diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index ca9f31be5..765be206d 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -1,6 +1,6 @@ --- event_ID: web0003-right-sizing-your-rapid-prototypes -event_title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" +title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." permalink: /webinars/right-sizing-your-rapid-prototypes diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index cafa5c56d..06747fae4 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -1,6 +1,6 @@ --- event_ID: web0004-web-design-is-hard -event_title: "Web Design is Hard" +title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." permalink: /webinars/web-design-is-hard diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index d9669b509..17eb09b0f 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -1,6 +1,6 @@ --- event_ID: web0005-state-of-responsive-web-design -event_title: "The State of Responsive Web Design" +title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." permalink: /webinars/state-of-responsive-web-design diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index 9b4f673f6..755d5afdd 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -1,6 +1,6 @@ --- event_ID: web0006-keeping-up-with-javascript -event_title: "Keeping Up with JavaScript is a Full-time Job" +title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." permalink: /webinars/keeping-up-with-javascript diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 4e338f350..4fe2b89e4 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -1,6 +1,6 @@ --- event_ID: web0007-design-systems-and-creativity -event_title: "Design Systems and Creativity: Unlikely Allies" +title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." permalink: /webinars/design-systems-and-creativity diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index a3dd21794..dd7d5efc2 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -1,6 +1,6 @@ --- event_ID: web0008-rethinking-full-stack -event_title: "Rethinking Full Stack:
    Cost and Compromise" +title: "Rethinking Full Stack:
    Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." permalink: /webinars/rethinking-full-stack diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index 490a5e1ec..d3bd47398 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -1,6 +1,6 @@ --- event_ID: web0009-future-of-web-layout -event_title: "The Future of Web Layout" +title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." permalink: /webinars/future-of-web-layout diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index 46cce1784..3dcec7da5 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -1,6 +1,6 @@ --- event_ID: web0010-planning-before-pixels -event_title: "Planning Before Pixels: Create with Purpose" +title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." permalink: /webinars/planning-before-pixels diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 5da0201b1..72f17aa00 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -1,6 +1,6 @@ --- event_ID: web0011-prototyping-as-process -event_title: "UX Design: Prototyping as Process" +title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." permalink: /webinars/prototyping-as-process diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index c5b079a91..5f43ba44c 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -1,6 +1,6 @@ --- event_ID: web0012-remote-work -event_title: "Remote Work: Can It Work for You?" +title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." permalink: /webinars/remote-work diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index 62c216486..18c93f284 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -1,6 +1,6 @@ --- event_ID: web0013-decade-of-responsive-web-design -event_title: "A Decade of Responsive Web Design" +title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." permalink: /webinars/decade-of-responsive-web-design diff --git a/_includes/partials/meta/logic-webinars.html b/_includes/partials/meta/logic-webinars.html index 99e00472b..058166559 100644 --- a/_includes/partials/meta/logic-webinars.html +++ b/_includes/partials/meta/logic-webinars.html @@ -5,14 +5,14 @@ {%- assign og_description = event.description | strip_html -%} {%- if event.event_ID == "web0005-state-of-responsive-web-design" -%} {%- assign og_url = "https://thegymnasium.com/webinars/state-of-responsive-web-design" -%} - {%- assign og_title = event.event_title -%} + {%- assign og_title = event.title -%} {%- else -%} {%- assign path = event.event_ID -%} {%- assign path = path | slice: 8,path.size -%} {%- assign og_url = path | prepend: "https://thegymnasium.com/webinars/" -%} - {%- assign og_title = event.event_title -%} + {%- assign og_title = event.title -%} {%- endif -%} {%- if event.register == true -%} diff --git a/_layouts/webinar.html b/_layouts/webinar.html index 884ab7281..f9a2515b1 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -6,7 +6,7 @@ {% assign webinar = site.data.webinars[page.event_ID] %} - + {%- else -%}

    No video ID provided!

    {%- endif -%} diff --git a/_includes/webinar-registration-form.html b/_includes/webinar-registration-form.html index b0c30b542..68c1ca066 100644 --- a/_includes/webinar-registration-form.html +++ b/_includes/webinar-registration-form.html @@ -2,7 +2,7 @@

    Register

    - +
    • diff --git a/_layouts/take5-raw.html b/_layouts/take5-raw.html index db6f17da6..8313377c6 100644 --- a/_layouts/take5-raw.html +++ b/_layouts/take5-raw.html @@ -7,7 +7,7 @@ {%- assign main = site.data.pages.courses -%} -{%- assign course = site.data.take5[page.course_ID] -%} +{%- assign course = site.data.take5[page.course_id] -%} {%- include partials/nav-courses-format.html page_active = "take5" -%} @@ -16,7 +16,7 @@
      -
      +
      {%- comment -%} // // VIDEO @@ -44,7 +44,7 @@

      {{ course.title }}

      {{ course.description }}

      - {% include take5/video.html video_ID=course.video_ID %} + {% include take5/video.html video_id=course.video_id %}
      @@ -139,7 +139,7 @@

      Related Content

      + id="{{ course.course_id }}-transcript">

      {{ course.title }}

      with {{ course.instructor }}

      diff --git a/_layouts/webinar.html b/_layouts/webinar.html index f9a2515b1..b40eac384 100644 --- a/_layouts/webinar.html +++ b/_layouts/webinar.html @@ -4,7 +4,7 @@ {%- include partials/test-top.html -%} {%- endif -%} -{% assign webinar = site.data.webinars[page.event_ID] %} +{% assign webinar = site.data.webinars[page.event_id] %} {% if webinar.video %} @@ -71,7 +71,7 @@

      {{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% include webinar-registration-form.html %} {% else %} - {% if webinar.video and webinar.video_ID %} + {% if webinar.video and webinar.video_id %}

      This webinar recording is now available. {% include event-video.html %} {% else %} @@ -80,7 +80,7 @@

      {{ webinar.event_date | date: "%A, %B %-d, %Y at " }}{{ web {% endif %} - {% if webinar.resources and webinar.video and webinar.video_ID %} + {% if webinar.resources and webinar.video and webinar.video_id %} {% include webinar-resources.html %} {% else %} diff --git a/courses/full/GYM-100/meta.md b/courses/full/GYM-100/meta.md index 5d209c234..f45cb8031 100644 --- a/courses/full/GYM-100/meta.md +++ b/courses/full/GYM-100/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-100 +course_id: GYM-100 permalink: /courses/full/gym-100/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-101/meta.md b/courses/full/GYM-101/meta.md index 771b0754b..1da40999b 100644 --- a/courses/full/GYM-101/meta.md +++ b/courses/full/GYM-101/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-101 +course_id: GYM-101 permalink: /courses/full/gym-101/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-102/meta.md b/courses/full/GYM-102/meta.md index a7afc7279..a0901aa77 100644 --- a/courses/full/GYM-102/meta.md +++ b/courses/full/GYM-102/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-102 +course_id: GYM-102 permalink: /courses/full/gym-102/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-103/meta.md b/courses/full/GYM-103/meta.md index e21a40a25..68beda195 100644 --- a/courses/full/GYM-103/meta.md +++ b/courses/full/GYM-103/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-103 +course_id: GYM-103 permalink: /courses/full/gym-103/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-104/meta.md b/courses/full/GYM-104/meta.md index 07c29aa86..4fa410b34 100644 --- a/courses/full/GYM-104/meta.md +++ b/courses/full/GYM-104/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-104 +course_id: GYM-104 permalink: /courses/full/gym-104/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-105/meta.md b/courses/full/GYM-105/meta.md index 3c26635df..05c026f70 100644 --- a/courses/full/GYM-105/meta.md +++ b/courses/full/GYM-105/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-105 +course_id: GYM-105 permalink: /courses/full/gym-105/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-106/meta.md b/courses/full/GYM-106/meta.md index 3241fa6cc..5d4a7b30a 100644 --- a/courses/full/GYM-106/meta.md +++ b/courses/full/GYM-106/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-106 +course_id: GYM-106 permalink: /courses/full/gym-106/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-107/meta.md b/courses/full/GYM-107/meta.md index 7c19f430b..b2d21288e 100644 --- a/courses/full/GYM-107/meta.md +++ b/courses/full/GYM-107/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-107 +course_id: GYM-107 permalink: /courses/full/gym-107/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-108/meta.md b/courses/full/GYM-108/meta.md index f97b2e215..939455f6f 100644 --- a/courses/full/GYM-108/meta.md +++ b/courses/full/GYM-108/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-108 +course_id: GYM-108 permalink: /courses/full/gym-108/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/GYM-109/meta.md b/courses/full/GYM-109/meta.md index 5f3adb44d..346490e25 100644 --- a/courses/full/GYM-109/meta.md +++ b/courses/full/GYM-109/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-109 +course_id: GYM-109 permalink: /courses/full/gym-109/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/full/course-list-recent.html b/courses/full/course-list-recent.html index 8c732d8f4..13368b25e 100644 --- a/courses/full/course-list-recent.html +++ b/courses/full/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "full" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Learn More diff --git a/courses/gym-shorts/GYM-001/meta.md b/courses/gym-shorts/GYM-001/meta.md index 120e08ee3..33005da14 100644 --- a/courses/gym-shorts/GYM-001/meta.md +++ b/courses/gym-shorts/GYM-001/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-001 +course_id: GYM-001 permalink: /courses/gym-shorts/gym-001/meta/ --- diff --git a/courses/gym-shorts/GYM-002/meta.md b/courses/gym-shorts/GYM-002/meta.md index b7341e5d1..973b8ca8d 100644 --- a/courses/gym-shorts/GYM-002/meta.md +++ b/courses/gym-shorts/GYM-002/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-002 +course_id: GYM-002 permalink: /courses/gym-shorts/gym-002/meta/ --- diff --git a/courses/gym-shorts/GYM-003/meta.md b/courses/gym-shorts/GYM-003/meta.md index bcc0d55cd..06d5bf9b3 100644 --- a/courses/gym-shorts/GYM-003/meta.md +++ b/courses/gym-shorts/GYM-003/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-003 +course_id: GYM-003 permalink: /courses/gym-shorts/gym-003/meta/ --- diff --git a/courses/gym-shorts/GYM-004/meta.md b/courses/gym-shorts/GYM-004/meta.md index ccfeb3be0..dd98285b8 100644 --- a/courses/gym-shorts/GYM-004/meta.md +++ b/courses/gym-shorts/GYM-004/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-004 +course_id: GYM-004 permalink: /courses/gym-shorts/gym-004/meta/ --- diff --git a/courses/gym-shorts/GYM-005/meta.md b/courses/gym-shorts/GYM-005/meta.md index e2a76e674..ed65d963f 100644 --- a/courses/gym-shorts/GYM-005/meta.md +++ b/courses/gym-shorts/GYM-005/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-005 +course_id: GYM-005 permalink: /courses/gym-shorts/gym-005/meta/ --- diff --git a/courses/gym-shorts/GYM-006/meta.md b/courses/gym-shorts/GYM-006/meta.md index c60ffd14a..70621e9d5 100644 --- a/courses/gym-shorts/GYM-006/meta.md +++ b/courses/gym-shorts/GYM-006/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-006 +course_id: GYM-006 permalink: /courses/gym-shorts/gym-006/meta/ --- diff --git a/courses/gym-shorts/GYM-007/meta.md b/courses/gym-shorts/GYM-007/meta.md index c6f8f4f0d..d6cd0f654 100644 --- a/courses/gym-shorts/GYM-007/meta.md +++ b/courses/gym-shorts/GYM-007/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-007 +course_id: GYM-007 permalink: /courses/gym-shorts/gym-007/meta/ --- diff --git a/courses/gym-shorts/GYM-008/meta.md b/courses/gym-shorts/GYM-008/meta.md index cfff65037..debca157c 100644 --- a/courses/gym-shorts/GYM-008/meta.md +++ b/courses/gym-shorts/GYM-008/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-008 +course_id: GYM-008 permalink: /courses/gym-shorts/gym-008/meta/ --- diff --git a/courses/gym-shorts/GYM-009/meta.md b/courses/gym-shorts/GYM-009/meta.md index 1410828db..96b0025bc 100644 --- a/courses/gym-shorts/GYM-009/meta.md +++ b/courses/gym-shorts/GYM-009/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-009 +course_id: GYM-009 permalink: /courses/gym-shorts/gym-009/meta/ --- diff --git a/courses/gym-shorts/GYM-011/meta.md b/courses/gym-shorts/GYM-011/meta.md index 10192348a..18d515091 100644 --- a/courses/gym-shorts/GYM-011/meta.md +++ b/courses/gym-shorts/GYM-011/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-011 +course_id: GYM-011 permalink: /courses/gym-shorts/gym-011/meta/ --- diff --git a/courses/gym-shorts/GYM-012/meta.md b/courses/gym-shorts/GYM-012/meta.md index 3b51adbb5..b4b743b19 100644 --- a/courses/gym-shorts/GYM-012/meta.md +++ b/courses/gym-shorts/GYM-012/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-012 +course_id: GYM-012 permalink: /courses/gym-shorts/gym-012/meta/ --- diff --git a/courses/gym-shorts/GYM-013/meta.md b/courses/gym-shorts/GYM-013/meta.md index 3a4246681..c3e796d3c 100644 --- a/courses/gym-shorts/GYM-013/meta.md +++ b/courses/gym-shorts/GYM-013/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-013 +course_id: GYM-013 permalink: /courses/gym-shorts/gym-013/meta/ --- diff --git a/courses/gym-shorts/GYM-014/meta.md b/courses/gym-shorts/GYM-014/meta.md index 31dfc7a3b..cbe93d474 100644 --- a/courses/gym-shorts/GYM-014/meta.md +++ b/courses/gym-shorts/GYM-014/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-014 +course_id: GYM-014 permalink: /courses/gym-shorts/gym-014/meta/ --- diff --git a/courses/gym-shorts/GYM-015/meta.md b/courses/gym-shorts/GYM-015/meta.md index d875116ef..df814d91d 100644 --- a/courses/gym-shorts/GYM-015/meta.md +++ b/courses/gym-shorts/GYM-015/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-015 +course_id: GYM-015 permalink: /courses/gym-shorts/gym-015/meta/ --- diff --git a/courses/gym-shorts/GYM-016/meta.md b/courses/gym-shorts/GYM-016/meta.md index 5059f9303..0d1e845ff 100644 --- a/courses/gym-shorts/GYM-016/meta.md +++ b/courses/gym-shorts/GYM-016/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-016 +course_id: GYM-016 permalink: /courses/gym-shorts/gym-016/meta/ --- diff --git a/courses/gym-shorts/GYM-017/meta.md b/courses/gym-shorts/GYM-017/meta.md index adcf7c848..6a95ba894 100644 --- a/courses/gym-shorts/GYM-017/meta.md +++ b/courses/gym-shorts/GYM-017/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-017 +course_id: GYM-017 permalink: /courses/gym-shorts/gym-017/meta/ --- diff --git a/courses/gym-shorts/GYM-018/meta.md b/courses/gym-shorts/GYM-018/meta.md index 6a5568c34..32f9322b0 100644 --- a/courses/gym-shorts/GYM-018/meta.md +++ b/courses/gym-shorts/GYM-018/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-018 +course_id: GYM-018 permalink: /courses/gym-shorts/gym-018/meta/ --- diff --git a/courses/gym-shorts/GYM-019/meta.md b/courses/gym-shorts/GYM-019/meta.md index 3d8c8f64f..97a61f708 100644 --- a/courses/gym-shorts/GYM-019/meta.md +++ b/courses/gym-shorts/GYM-019/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-019 +course_id: GYM-019 permalink: /courses/gym-shorts/gym-019/meta/ --- diff --git a/courses/gym-shorts/GYM-020/meta.md b/courses/gym-shorts/GYM-020/meta.md index 835020e2a..7b4e17455 100644 --- a/courses/gym-shorts/GYM-020/meta.md +++ b/courses/gym-shorts/GYM-020/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-020 +course_id: GYM-020 permalink: /courses/gym-shorts/gym-020/meta/ --- diff --git a/courses/gym-shorts/course-list-recent.html b/courses/gym-shorts/course-list-recent.html index 45c5eb3db..fba5b1857 100644 --- a/courses/gym-shorts/course-list-recent.html +++ b/courses/gym-shorts/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "short" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Learn More diff --git a/courses/take5/GYM-5001/index.md b/courses/take5/GYM-5001/index.md index 0f518f7b6..3318a3690 100644 --- a/courses/take5/GYM-5001/index.md +++ b/courses/take5/GYM-5001/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/ --- diff --git a/courses/take5/GYM-5001/meta.md b/courses/take5/GYM-5001/meta.md index 4d536ac2d..2d37a157e 100644 --- a/courses/take5/GYM-5001/meta.md +++ b/courses/take5/GYM-5001/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/meta/ --- diff --git a/courses/take5/GYM-5002/index.md b/courses/take5/GYM-5002/index.md index 1f8871eb2..477d649ca 100644 --- a/courses/take5/GYM-5002/index.md +++ b/courses/take5/GYM-5002/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5002 +course_id: GYM-5002 permalink: /courses/take5/gym-5002 --- diff --git a/courses/take5/GYM-5002/meta.md b/courses/take5/GYM-5002/meta.md index 92d16c1c3..6627d7b08 100644 --- a/courses/take5/GYM-5002/meta.md +++ b/courses/take5/GYM-5002/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5002 +course_id: GYM-5002 permalink: /courses/take5/gym-5002/meta/ --- diff --git a/courses/take5/GYM-5003/index.md b/courses/take5/GYM-5003/index.md index 6c213ef9a..e6a1b9884 100644 --- a/courses/take5/GYM-5003/index.md +++ b/courses/take5/GYM-5003/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5003 +course_id: GYM-5003 permalink: /courses/take5/gym-5003 --- diff --git a/courses/take5/GYM-5003/meta.md b/courses/take5/GYM-5003/meta.md index 373c4908a..24e93973e 100644 --- a/courses/take5/GYM-5003/meta.md +++ b/courses/take5/GYM-5003/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5003 +course_id: GYM-5003 permalink: /courses/take5/gym-5003/meta/ --- diff --git a/courses/take5/GYM-5004/index.md b/courses/take5/GYM-5004/index.md index b73624872..292d00185 100644 --- a/courses/take5/GYM-5004/index.md +++ b/courses/take5/GYM-5004/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5004 +course_id: GYM-5004 permalink: /courses/take5/gym-5004 --- diff --git a/courses/take5/GYM-5004/meta.md b/courses/take5/GYM-5004/meta.md index 5362ce5ab..fe4141c13 100644 --- a/courses/take5/GYM-5004/meta.md +++ b/courses/take5/GYM-5004/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5004 +course_id: GYM-5004 permalink: /courses/take5/gym-5004/meta/ --- diff --git a/courses/take5/GYM-5005/index.md b/courses/take5/GYM-5005/index.md index 216e739ef..c32adb951 100644 --- a/courses/take5/GYM-5005/index.md +++ b/courses/take5/GYM-5005/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5005 +course_id: GYM-5005 permalink: /courses/take5/gym-5005 --- diff --git a/courses/take5/GYM-5005/meta.md b/courses/take5/GYM-5005/meta.md index 6588fd305..72d1bfada 100644 --- a/courses/take5/GYM-5005/meta.md +++ b/courses/take5/GYM-5005/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5005 +course_id: GYM-5005 permalink: /courses/take5/gym-5005/meta/ --- diff --git a/courses/take5/GYM-5006/index.md b/courses/take5/GYM-5006/index.md index 9d53b7efa..26fbed520 100644 --- a/courses/take5/GYM-5006/index.md +++ b/courses/take5/GYM-5006/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5006 +course_id: GYM-5006 permalink: /courses/take5/gym-5006 --- diff --git a/courses/take5/GYM-5006/meta.md b/courses/take5/GYM-5006/meta.md index 8da1ebd3c..ed34f7445 100644 --- a/courses/take5/GYM-5006/meta.md +++ b/courses/take5/GYM-5006/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5006 +course_id: GYM-5006 permalink: /courses/take5/gym-5006/meta/ --- diff --git a/courses/take5/GYM-5007/index.md b/courses/take5/GYM-5007/index.md index 8e2f622c3..f5d6d4061 100644 --- a/courses/take5/GYM-5007/index.md +++ b/courses/take5/GYM-5007/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5007 +course_id: GYM-5007 permalink: /courses/take5/gym-5007 --- diff --git a/courses/take5/GYM-5007/meta.md b/courses/take5/GYM-5007/meta.md index 3cf411644..d6125529d 100644 --- a/courses/take5/GYM-5007/meta.md +++ b/courses/take5/GYM-5007/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5007 +course_id: GYM-5007 permalink: /courses/take5/gym-5007/meta/ --- diff --git a/courses/take5/GYM-5008/index.md b/courses/take5/GYM-5008/index.md index f0e24ef61..c71c9d8e5 100644 --- a/courses/take5/GYM-5008/index.md +++ b/courses/take5/GYM-5008/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5008 +course_id: GYM-5008 permalink: /courses/take5/gym-5008 --- diff --git a/courses/take5/GYM-5008/meta.md b/courses/take5/GYM-5008/meta.md index 201a1c8f1..13f776cb4 100644 --- a/courses/take5/GYM-5008/meta.md +++ b/courses/take5/GYM-5008/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5008 +course_id: GYM-5008 permalink: /courses/take5/gym-5008/meta/ --- diff --git a/courses/take5/GYM-5009/index.md b/courses/take5/GYM-5009/index.md index 5ffea9918..9d54164e6 100644 --- a/courses/take5/GYM-5009/index.md +++ b/courses/take5/GYM-5009/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5009 +course_id: GYM-5009 permalink: /courses/take5/gym-5009 --- diff --git a/courses/take5/GYM-5009/meta.md b/courses/take5/GYM-5009/meta.md index 918048243..99e522da5 100644 --- a/courses/take5/GYM-5009/meta.md +++ b/courses/take5/GYM-5009/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5009 +course_id: GYM-5009 permalink: /courses/take5/gym-5009/meta/ --- diff --git a/courses/take5/GYM-5010/index.md b/courses/take5/GYM-5010/index.md index 6c71bf257..a49a9bfa2 100644 --- a/courses/take5/GYM-5010/index.md +++ b/courses/take5/GYM-5010/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5010 +course_id: GYM-5010 permalink: /courses/take5/gym-5010 --- diff --git a/courses/take5/GYM-5010/meta.md b/courses/take5/GYM-5010/meta.md index 4469c0c7c..955e66d70 100644 --- a/courses/take5/GYM-5010/meta.md +++ b/courses/take5/GYM-5010/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5010 +course_id: GYM-5010 permalink: /courses/take5/gym-5010/meta/ --- diff --git a/courses/take5/GYM-5011/index.md b/courses/take5/GYM-5011/index.md index f7feb5cb2..176dda764 100644 --- a/courses/take5/GYM-5011/index.md +++ b/courses/take5/GYM-5011/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5011 +course_id: GYM-5011 permalink: /courses/take5/gym-5011 --- diff --git a/courses/take5/GYM-5011/meta.md b/courses/take5/GYM-5011/meta.md index 2a1bd0ce9..27def48f0 100644 --- a/courses/take5/GYM-5011/meta.md +++ b/courses/take5/GYM-5011/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5011 +course_id: GYM-5011 permalink: /courses/take5/gym-5011/meta/ --- diff --git a/courses/take5/GYM-5012/index.md b/courses/take5/GYM-5012/index.md index e13ab8c55..eb6a0f0ae 100644 --- a/courses/take5/GYM-5012/index.md +++ b/courses/take5/GYM-5012/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5012 +course_id: GYM-5012 permalink: /courses/take5/gym-5012 --- diff --git a/courses/take5/GYM-5012/meta.md b/courses/take5/GYM-5012/meta.md index b0f43c2bf..449211fc0 100644 --- a/courses/take5/GYM-5012/meta.md +++ b/courses/take5/GYM-5012/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5012 +course_id: GYM-5012 permalink: /courses/take5/gym-5012/meta/ --- diff --git a/courses/take5/GYM-5013/index.md b/courses/take5/GYM-5013/index.md index 434fd4d20..8cb4de2e5 100644 --- a/courses/take5/GYM-5013/index.md +++ b/courses/take5/GYM-5013/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5013 +course_id: GYM-5013 permalink: /courses/take5/gym-5013 --- diff --git a/courses/take5/GYM-5013/meta.md b/courses/take5/GYM-5013/meta.md index 44edea813..5f8c0d256 100644 --- a/courses/take5/GYM-5013/meta.md +++ b/courses/take5/GYM-5013/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5013 +course_id: GYM-5013 permalink: /courses/take5/gym-5013/meta/ --- diff --git a/courses/take5/GYM-5014/index.md b/courses/take5/GYM-5014/index.md index 83c5a25a4..61b2a3846 100644 --- a/courses/take5/GYM-5014/index.md +++ b/courses/take5/GYM-5014/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5014 +course_id: GYM-5014 permalink: /courses/take5/gym-5014 --- diff --git a/courses/take5/GYM-5014/meta.md b/courses/take5/GYM-5014/meta.md index 20f786891..12da62a99 100644 --- a/courses/take5/GYM-5014/meta.md +++ b/courses/take5/GYM-5014/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5014 +course_id: GYM-5014 permalink: /courses/take5/gym-5014/meta/ --- diff --git a/courses/take5/GYM-5015/index.md b/courses/take5/GYM-5015/index.md index 01c7674ae..ddbc33696 100644 --- a/courses/take5/GYM-5015/index.md +++ b/courses/take5/GYM-5015/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5015 +course_id: GYM-5015 permalink: /courses/take5/gym-5015 --- diff --git a/courses/take5/GYM-5015/meta.md b/courses/take5/GYM-5015/meta.md index 4903ce172..12d396a72 100644 --- a/courses/take5/GYM-5015/meta.md +++ b/courses/take5/GYM-5015/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5015 +course_id: GYM-5015 permalink: /courses/take5/gym-5015/meta/ --- diff --git a/courses/take5/GYM-5016/index.md b/courses/take5/GYM-5016/index.md index 3c27d01e7..0e9048a9b 100644 --- a/courses/take5/GYM-5016/index.md +++ b/courses/take5/GYM-5016/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5016 +course_id: GYM-5016 permalink: /courses/take5/gym-5016 --- diff --git a/courses/take5/GYM-5016/meta.md b/courses/take5/GYM-5016/meta.md index cf7689b6b..af5da204b 100644 --- a/courses/take5/GYM-5016/meta.md +++ b/courses/take5/GYM-5016/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5016 +course_id: GYM-5016 permalink: /courses/take5/gym-5016/meta/ --- diff --git a/courses/take5/GYM-5017/index.md b/courses/take5/GYM-5017/index.md index e03bf3787..ae1f77315 100644 --- a/courses/take5/GYM-5017/index.md +++ b/courses/take5/GYM-5017/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5017 +course_id: GYM-5017 permalink: /courses/take5/gym-5017 --- diff --git a/courses/take5/GYM-5017/meta.md b/courses/take5/GYM-5017/meta.md index 488afbeb4..a042c8251 100644 --- a/courses/take5/GYM-5017/meta.md +++ b/courses/take5/GYM-5017/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5017 +course_id: GYM-5017 permalink: /courses/take5/gym-5017/meta/ --- diff --git a/courses/take5/GYM-5018/index.md b/courses/take5/GYM-5018/index.md index e95ea4dcf..705bb9a61 100644 --- a/courses/take5/GYM-5018/index.md +++ b/courses/take5/GYM-5018/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5018 +course_id: GYM-5018 permalink: /courses/take5/gym-5018 --- diff --git a/courses/take5/GYM-5018/meta.md b/courses/take5/GYM-5018/meta.md index 44f7b1953..2c13561af 100644 --- a/courses/take5/GYM-5018/meta.md +++ b/courses/take5/GYM-5018/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5018 +course_id: GYM-5018 permalink: /courses/take5/gym-5018/meta/ --- diff --git a/courses/take5/GYM-5019/index.md b/courses/take5/GYM-5019/index.md index 842e15c84..be2216d03 100644 --- a/courses/take5/GYM-5019/index.md +++ b/courses/take5/GYM-5019/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5019 +course_id: GYM-5019 permalink: /courses/take5/gym-5019 --- diff --git a/courses/take5/GYM-5019/meta.md b/courses/take5/GYM-5019/meta.md index f207052fa..ece7b9075 100644 --- a/courses/take5/GYM-5019/meta.md +++ b/courses/take5/GYM-5019/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5019 +course_id: GYM-5019 permalink: /courses/take5/gym-5019/meta/ --- diff --git a/courses/take5/GYM-5020/index.md b/courses/take5/GYM-5020/index.md index d889eb5ae..47d68945d 100644 --- a/courses/take5/GYM-5020/index.md +++ b/courses/take5/GYM-5020/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5020 +course_id: GYM-5020 permalink: /courses/take5/gym-5020 --- diff --git a/courses/take5/GYM-5020/meta.md b/courses/take5/GYM-5020/meta.md index e99bc7c54..fb7667acd 100644 --- a/courses/take5/GYM-5020/meta.md +++ b/courses/take5/GYM-5020/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5020 +course_id: GYM-5020 permalink: /courses/take5/gym-5020/meta/ --- diff --git a/courses/take5/GYM-5021/index.md b/courses/take5/GYM-5021/index.md index 29efd2b82..7cbfea5fd 100644 --- a/courses/take5/GYM-5021/index.md +++ b/courses/take5/GYM-5021/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5021 +course_id: GYM-5021 permalink: /courses/take5/gym-5021 --- diff --git a/courses/take5/GYM-5021/meta.md b/courses/take5/GYM-5021/meta.md index 2852df0a4..e96a46392 100644 --- a/courses/take5/GYM-5021/meta.md +++ b/courses/take5/GYM-5021/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5021 +course_id: GYM-5021 permalink: /courses/take5/gym-5021/meta/ --- diff --git a/courses/take5/GYM-5022/index.md b/courses/take5/GYM-5022/index.md index 49d1d4786..6b25e38e3 100644 --- a/courses/take5/GYM-5022/index.md +++ b/courses/take5/GYM-5022/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5022 +course_id: GYM-5022 permalink: /courses/take5/gym-5022 --- diff --git a/courses/take5/GYM-5022/meta.md b/courses/take5/GYM-5022/meta.md index 07e0880e7..1b7a25ea2 100644 --- a/courses/take5/GYM-5022/meta.md +++ b/courses/take5/GYM-5022/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5022 +course_id: GYM-5022 permalink: /courses/take5/gym-5022/meta/ --- diff --git a/courses/take5/GYM-5023/index.md b/courses/take5/GYM-5023/index.md index b70c9a26e..a28b895c5 100644 --- a/courses/take5/GYM-5023/index.md +++ b/courses/take5/GYM-5023/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5023 +course_id: GYM-5023 permalink: /courses/take5/gym-5023 --- diff --git a/courses/take5/GYM-5023/meta.md b/courses/take5/GYM-5023/meta.md index 7e50d28ab..92d0b2512 100644 --- a/courses/take5/GYM-5023/meta.md +++ b/courses/take5/GYM-5023/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5023 +course_id: GYM-5023 permalink: /courses/take5/gym-5023/meta/ --- diff --git a/courses/take5/GYM-5024/index.md b/courses/take5/GYM-5024/index.md index eda2d4fc7..124b41ac3 100644 --- a/courses/take5/GYM-5024/index.md +++ b/courses/take5/GYM-5024/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5024 +course_id: GYM-5024 permalink: /courses/take5/gym-5024 --- diff --git a/courses/take5/GYM-5024/meta.md b/courses/take5/GYM-5024/meta.md index 84c9cb569..0f1e64f28 100644 --- a/courses/take5/GYM-5024/meta.md +++ b/courses/take5/GYM-5024/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5024 +course_id: GYM-5024 permalink: /courses/take5/gym-5024/meta/ --- diff --git a/courses/take5/GYM-5025/index.md b/courses/take5/GYM-5025/index.md index dd6446836..edde49289 100644 --- a/courses/take5/GYM-5025/index.md +++ b/courses/take5/GYM-5025/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5025 +course_id: GYM-5025 permalink: /courses/take5/gym-5025 --- diff --git a/courses/take5/GYM-5025/meta.md b/courses/take5/GYM-5025/meta.md index ac24fdef9..1c8f1d7ec 100644 --- a/courses/take5/GYM-5025/meta.md +++ b/courses/take5/GYM-5025/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5025 +course_id: GYM-5025 permalink: /courses/take5/gym-5025/meta/ --- diff --git a/courses/take5/GYM-5026/index.md b/courses/take5/GYM-5026/index.md index a81581afa..5d3bac92e 100644 --- a/courses/take5/GYM-5026/index.md +++ b/courses/take5/GYM-5026/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5026 +course_id: GYM-5026 permalink: /courses/take5/gym-5026 --- diff --git a/courses/take5/GYM-5026/meta.md b/courses/take5/GYM-5026/meta.md index 48884efc9..8bbdf12e5 100644 --- a/courses/take5/GYM-5026/meta.md +++ b/courses/take5/GYM-5026/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5026 +course_id: GYM-5026 permalink: /courses/take5/gym-5026/meta/ --- diff --git a/courses/take5/GYM-5027/index.md b/courses/take5/GYM-5027/index.md index bba3200e6..4648c3a5e 100644 --- a/courses/take5/GYM-5027/index.md +++ b/courses/take5/GYM-5027/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5027 +course_id: GYM-5027 permalink: /courses/take5/gym-5027 --- diff --git a/courses/take5/GYM-5027/meta.md b/courses/take5/GYM-5027/meta.md index 44830cd8a..71e04195a 100644 --- a/courses/take5/GYM-5027/meta.md +++ b/courses/take5/GYM-5027/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5027 +course_id: GYM-5027 permalink: /courses/take5/gym-5027/meta/ --- diff --git a/courses/take5/GYM-5028/index.md b/courses/take5/GYM-5028/index.md index 84082277a..867b12ee4 100644 --- a/courses/take5/GYM-5028/index.md +++ b/courses/take5/GYM-5028/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5028 +course_id: GYM-5028 permalink: /courses/take5/gym-5028 --- diff --git a/courses/take5/GYM-5028/meta.md b/courses/take5/GYM-5028/meta.md index a9a3b3b8d..8b11e5580 100644 --- a/courses/take5/GYM-5028/meta.md +++ b/courses/take5/GYM-5028/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5028 +course_id: GYM-5028 permalink: /courses/take5/gym-5028/meta/ --- diff --git a/courses/take5/GYM-5029/index.md b/courses/take5/GYM-5029/index.md index 6429884ed..6782be706 100644 --- a/courses/take5/GYM-5029/index.md +++ b/courses/take5/GYM-5029/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5029 +course_id: GYM-5029 permalink: /courses/take5/gym-5029 --- diff --git a/courses/take5/GYM-5029/meta.md b/courses/take5/GYM-5029/meta.md index 20b3ccad9..0dece6d92 100644 --- a/courses/take5/GYM-5029/meta.md +++ b/courses/take5/GYM-5029/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5029 +course_id: GYM-5029 permalink: /courses/take5/gym-5029/meta/ --- diff --git a/courses/take5/GYM-5030/index.md b/courses/take5/GYM-5030/index.md index e782d018a..73c25374d 100644 --- a/courses/take5/GYM-5030/index.md +++ b/courses/take5/GYM-5030/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5030 +course_id: GYM-5030 permalink: /courses/take5/gym-5030 --- diff --git a/courses/take5/GYM-5030/meta.md b/courses/take5/GYM-5030/meta.md index 1156055c2..51957f2ca 100644 --- a/courses/take5/GYM-5030/meta.md +++ b/courses/take5/GYM-5030/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5030 +course_id: GYM-5030 permalink: /courses/take5/gym-5030/meta/ --- diff --git a/courses/take5/GYM-5031/index.md b/courses/take5/GYM-5031/index.md index 56b95a6ed..34e2e0593 100644 --- a/courses/take5/GYM-5031/index.md +++ b/courses/take5/GYM-5031/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5031 +course_id: GYM-5031 permalink: /courses/take5/gym-5031 --- diff --git a/courses/take5/GYM-5031/meta.md b/courses/take5/GYM-5031/meta.md index 7baf7247f..22e9be890 100644 --- a/courses/take5/GYM-5031/meta.md +++ b/courses/take5/GYM-5031/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5031 +course_id: GYM-5031 permalink: /courses/take5/gym-5031/meta/ --- diff --git a/courses/take5/GYM-5032/index.md b/courses/take5/GYM-5032/index.md index e0677acab..48f671588 100644 --- a/courses/take5/GYM-5032/index.md +++ b/courses/take5/GYM-5032/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5032 +course_id: GYM-5032 permalink: /courses/take5/gym-5032 --- diff --git a/courses/take5/GYM-5032/meta.md b/courses/take5/GYM-5032/meta.md index 186976e9a..446fe2bf0 100644 --- a/courses/take5/GYM-5032/meta.md +++ b/courses/take5/GYM-5032/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5032 +course_id: GYM-5032 permalink: /courses/take5/gym-5032/meta/ --- diff --git a/courses/take5/GYM-5033/index.md b/courses/take5/GYM-5033/index.md index 901e5f26b..69a083311 100644 --- a/courses/take5/GYM-5033/index.md +++ b/courses/take5/GYM-5033/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5033 +course_id: GYM-5033 permalink: /courses/take5/gym-5033 --- diff --git a/courses/take5/GYM-5033/meta.md b/courses/take5/GYM-5033/meta.md index d811851ef..15a9d5964 100644 --- a/courses/take5/GYM-5033/meta.md +++ b/courses/take5/GYM-5033/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5033 +course_id: GYM-5033 permalink: /courses/take5/gym-5033/meta/ --- diff --git a/courses/take5/GYM-5034/index.md b/courses/take5/GYM-5034/index.md index 89d75e9a0..27b5aced6 100644 --- a/courses/take5/GYM-5034/index.md +++ b/courses/take5/GYM-5034/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5034 +course_id: GYM-5034 permalink: /courses/take5/gym-5034 --- diff --git a/courses/take5/GYM-5034/meta.md b/courses/take5/GYM-5034/meta.md index 8b7a8212f..b8a3a3a0e 100644 --- a/courses/take5/GYM-5034/meta.md +++ b/courses/take5/GYM-5034/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5034 +course_id: GYM-5034 permalink: /courses/take5/gym-5034/meta/ --- diff --git a/courses/take5/GYM-5035/index.md b/courses/take5/GYM-5035/index.md index 34717d610..d28d7255e 100644 --- a/courses/take5/GYM-5035/index.md +++ b/courses/take5/GYM-5035/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5035 +course_id: GYM-5035 permalink: /courses/take5/gym-5035 --- diff --git a/courses/take5/GYM-5035/meta.md b/courses/take5/GYM-5035/meta.md index 427dfbf63..d19b176cf 100644 --- a/courses/take5/GYM-5035/meta.md +++ b/courses/take5/GYM-5035/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5035 +course_id: GYM-5035 permalink: /courses/take5/gym-5035/meta/ --- diff --git a/courses/take5/GYM-5036/index.md b/courses/take5/GYM-5036/index.md index 84304a3df..87503c454 100644 --- a/courses/take5/GYM-5036/index.md +++ b/courses/take5/GYM-5036/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5036 +course_id: GYM-5036 permalink: /courses/take5/gym-5036 --- diff --git a/courses/take5/GYM-5036/meta.md b/courses/take5/GYM-5036/meta.md index 8da203c63..5c06466ff 100644 --- a/courses/take5/GYM-5036/meta.md +++ b/courses/take5/GYM-5036/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5036 +course_id: GYM-5036 permalink: /courses/take5/gym-5036/meta/ --- diff --git a/courses/take5/GYM-5037/index.md b/courses/take5/GYM-5037/index.md index ba27393e7..bb3382ff2 100644 --- a/courses/take5/GYM-5037/index.md +++ b/courses/take5/GYM-5037/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5037 +course_id: GYM-5037 permalink: /courses/take5/gym-5037 --- diff --git a/courses/take5/GYM-5037/meta.md b/courses/take5/GYM-5037/meta.md index 93b5d260d..9d64a033e 100644 --- a/courses/take5/GYM-5037/meta.md +++ b/courses/take5/GYM-5037/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5037 +course_id: GYM-5037 permalink: /courses/take5/gym-5037/meta/ --- diff --git a/courses/take5/GYM-5038/index.md b/courses/take5/GYM-5038/index.md index d99c3e71f..6d5757940 100644 --- a/courses/take5/GYM-5038/index.md +++ b/courses/take5/GYM-5038/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5038 +course_id: GYM-5038 permalink: /courses/take5/gym-5038 --- diff --git a/courses/take5/GYM-5038/meta.md b/courses/take5/GYM-5038/meta.md index 377da7bf1..376999cb3 100644 --- a/courses/take5/GYM-5038/meta.md +++ b/courses/take5/GYM-5038/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5038 +course_id: GYM-5038 permalink: /courses/take5/gym-5038/meta/ --- diff --git a/courses/take5/GYM-5039/index.md b/courses/take5/GYM-5039/index.md index a87ae531a..b55d6e893 100644 --- a/courses/take5/GYM-5039/index.md +++ b/courses/take5/GYM-5039/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5039 +course_id: GYM-5039 permalink: /courses/take5/gym-5039 --- diff --git a/courses/take5/GYM-5039/meta.md b/courses/take5/GYM-5039/meta.md index ffa243912..42e2199bd 100644 --- a/courses/take5/GYM-5039/meta.md +++ b/courses/take5/GYM-5039/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5039 +course_id: GYM-5039 permalink: /courses/take5/gym-5039/meta/ --- diff --git a/courses/take5/GYM-5040/index.md b/courses/take5/GYM-5040/index.md index 4c7e49b53..1e6ada49d 100644 --- a/courses/take5/GYM-5040/index.md +++ b/courses/take5/GYM-5040/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5040 +course_id: GYM-5040 permalink: /courses/take5/gym-5040 --- diff --git a/courses/take5/GYM-5040/meta.md b/courses/take5/GYM-5040/meta.md index 5595ada9b..659de5f9e 100644 --- a/courses/take5/GYM-5040/meta.md +++ b/courses/take5/GYM-5040/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5040 +course_id: GYM-5040 permalink: /courses/take5/gym-5040/meta/ --- diff --git a/courses/take5/GYM-5041/index.md b/courses/take5/GYM-5041/index.md index d9adb092c..46ba15c67 100644 --- a/courses/take5/GYM-5041/index.md +++ b/courses/take5/GYM-5041/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5041 +course_id: GYM-5041 permalink: /courses/take5/gym-5041 --- diff --git a/courses/take5/GYM-5041/meta.md b/courses/take5/GYM-5041/meta.md index 5d101f130..33d37ad4f 100644 --- a/courses/take5/GYM-5041/meta.md +++ b/courses/take5/GYM-5041/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5041 +course_id: GYM-5041 permalink: /courses/take5/gym-5041/meta/ --- diff --git a/courses/take5/GYM-5042/index.md b/courses/take5/GYM-5042/index.md index a9763cea8..073e47410 100644 --- a/courses/take5/GYM-5042/index.md +++ b/courses/take5/GYM-5042/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5042 +course_id: GYM-5042 permalink: /courses/take5/gym-5042 --- diff --git a/courses/take5/GYM-5042/meta.md b/courses/take5/GYM-5042/meta.md index ab153e7f8..f35f302f1 100644 --- a/courses/take5/GYM-5042/meta.md +++ b/courses/take5/GYM-5042/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5042 +course_id: GYM-5042 permalink: /courses/take5/gym-5042/meta/ --- diff --git a/courses/take5/GYM-5043/index.md b/courses/take5/GYM-5043/index.md index 091f98c0f..f1838da2f 100644 --- a/courses/take5/GYM-5043/index.md +++ b/courses/take5/GYM-5043/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5043 +course_id: GYM-5043 permalink: /courses/take5/gym-5043 --- diff --git a/courses/take5/GYM-5043/meta.md b/courses/take5/GYM-5043/meta.md index 3807c0abb..3a854b99b 100644 --- a/courses/take5/GYM-5043/meta.md +++ b/courses/take5/GYM-5043/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5043 +course_id: GYM-5043 permalink: /courses/take5/gym-5043/meta/ --- diff --git a/courses/take5/GYM-5044/index.md b/courses/take5/GYM-5044/index.md index 52181e535..498af7ab1 100644 --- a/courses/take5/GYM-5044/index.md +++ b/courses/take5/GYM-5044/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5044 +course_id: GYM-5044 permalink: /courses/take5/gym-5044 --- diff --git a/courses/take5/GYM-5044/meta.md b/courses/take5/GYM-5044/meta.md index 253ea9e35..56c5997e3 100644 --- a/courses/take5/GYM-5044/meta.md +++ b/courses/take5/GYM-5044/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5044 +course_id: GYM-5044 permalink: /courses/take5/gym-5044/meta/ --- diff --git a/courses/take5/GYM-5045/index.md b/courses/take5/GYM-5045/index.md index c0421e123..078a61d63 100644 --- a/courses/take5/GYM-5045/index.md +++ b/courses/take5/GYM-5045/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5045 +course_id: GYM-5045 permalink: /courses/take5/gym-5045 --- diff --git a/courses/take5/GYM-5045/meta.md b/courses/take5/GYM-5045/meta.md index 18d9ecdad..7ba6229e2 100644 --- a/courses/take5/GYM-5045/meta.md +++ b/courses/take5/GYM-5045/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5045 +course_id: GYM-5045 permalink: /courses/take5/gym-5045/meta/ --- diff --git a/courses/take5/GYM-5046/index.md b/courses/take5/GYM-5046/index.md index 09a329057..7c12e7c46 100644 --- a/courses/take5/GYM-5046/index.md +++ b/courses/take5/GYM-5046/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5046 +course_id: GYM-5046 permalink: /courses/take5/gym-5046 --- diff --git a/courses/take5/GYM-5046/meta.md b/courses/take5/GYM-5046/meta.md index 7361cbdb9..5286b6137 100644 --- a/courses/take5/GYM-5046/meta.md +++ b/courses/take5/GYM-5046/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5046 +course_id: GYM-5046 permalink: /courses/take5/gym-5046/meta/ --- diff --git a/courses/take5/GYM-5047/index.md b/courses/take5/GYM-5047/index.md index e57e87027..c3c463f72 100644 --- a/courses/take5/GYM-5047/index.md +++ b/courses/take5/GYM-5047/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5047 +course_id: GYM-5047 permalink: /courses/take5/gym-5047 --- diff --git a/courses/take5/GYM-5047/meta.md b/courses/take5/GYM-5047/meta.md index e18c56c76..655c6a3da 100644 --- a/courses/take5/GYM-5047/meta.md +++ b/courses/take5/GYM-5047/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5047 +course_id: GYM-5047 permalink: /courses/take5/gym-5047/meta/ --- diff --git a/courses/take5/GYM-5048/index.md b/courses/take5/GYM-5048/index.md index 40b83afaa..ca23da1db 100644 --- a/courses/take5/GYM-5048/index.md +++ b/courses/take5/GYM-5048/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5048 +course_id: GYM-5048 permalink: /courses/take5/gym-5048 --- diff --git a/courses/take5/GYM-5048/meta.md b/courses/take5/GYM-5048/meta.md index 5dfa1725e..101b86ac8 100644 --- a/courses/take5/GYM-5048/meta.md +++ b/courses/take5/GYM-5048/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5048 +course_id: GYM-5048 permalink: /courses/take5/gym-5048/meta/ --- diff --git a/courses/take5/GYM-5049/index.md b/courses/take5/GYM-5049/index.md index ea48c464d..eb25cfe37 100644 --- a/courses/take5/GYM-5049/index.md +++ b/courses/take5/GYM-5049/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5049 +course_id: GYM-5049 permalink: /courses/take5/gym-5049 --- diff --git a/courses/take5/GYM-5049/meta.md b/courses/take5/GYM-5049/meta.md index ad69d8c5d..1c1553e00 100644 --- a/courses/take5/GYM-5049/meta.md +++ b/courses/take5/GYM-5049/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5049 +course_id: GYM-5049 permalink: /courses/take5/gym-5049/meta/ --- diff --git a/courses/take5/GYM-5050/index.md b/courses/take5/GYM-5050/index.md index c56d545ff..8865481d9 100644 --- a/courses/take5/GYM-5050/index.md +++ b/courses/take5/GYM-5050/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5050 +course_id: GYM-5050 permalink: /courses/take5/gym-5050 --- diff --git a/courses/take5/GYM-5050/meta.md b/courses/take5/GYM-5050/meta.md index 899f3577a..9a7e2d85a 100644 --- a/courses/take5/GYM-5050/meta.md +++ b/courses/take5/GYM-5050/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5050 +course_id: GYM-5050 permalink: /courses/take5/gym-5050/meta/ --- diff --git a/courses/take5/GYM-5051/index.md b/courses/take5/GYM-5051/index.md index f1c93818c..4e746e256 100644 --- a/courses/take5/GYM-5051/index.md +++ b/courses/take5/GYM-5051/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5051 +course_id: GYM-5051 permalink: /courses/take5/gym-5051 --- diff --git a/courses/take5/GYM-5051/meta.md b/courses/take5/GYM-5051/meta.md index 948e11ce0..f1ab0537d 100644 --- a/courses/take5/GYM-5051/meta.md +++ b/courses/take5/GYM-5051/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5051 +course_id: GYM-5051 permalink: /courses/take5/gym-5051/meta/ --- diff --git a/courses/take5/GYM-5052/index.md b/courses/take5/GYM-5052/index.md index 375bcaf35..7e25032d8 100644 --- a/courses/take5/GYM-5052/index.md +++ b/courses/take5/GYM-5052/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5052 +course_id: GYM-5052 permalink: /courses/take5/gym-5052 --- diff --git a/courses/take5/GYM-5052/meta.md b/courses/take5/GYM-5052/meta.md index 8ad021310..643bfaf10 100644 --- a/courses/take5/GYM-5052/meta.md +++ b/courses/take5/GYM-5052/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5052 +course_id: GYM-5052 permalink: /courses/take5/gym-5052/meta/ --- diff --git a/courses/take5/GYM-5053/index.md b/courses/take5/GYM-5053/index.md index d124f16bb..db7830531 100644 --- a/courses/take5/GYM-5053/index.md +++ b/courses/take5/GYM-5053/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5053 +course_id: GYM-5053 permalink: /courses/take5/gym-5053 --- diff --git a/courses/take5/GYM-5053/meta.md b/courses/take5/GYM-5053/meta.md index 0e5605115..3986e824e 100644 --- a/courses/take5/GYM-5053/meta.md +++ b/courses/take5/GYM-5053/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5053 +course_id: GYM-5053 permalink: /courses/take5/gym-5053/meta/ --- diff --git a/courses/take5/GYM-5056/index.md b/courses/take5/GYM-5056/index.md index 61d8a874f..11ce3f045 100644 --- a/courses/take5/GYM-5056/index.md +++ b/courses/take5/GYM-5056/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5056 +course_id: GYM-5056 permalink: /courses/take5/gym-5056 --- diff --git a/courses/take5/GYM-5056/meta.md b/courses/take5/GYM-5056/meta.md index 8b3d164bd..a3f4f95fa 100644 --- a/courses/take5/GYM-5056/meta.md +++ b/courses/take5/GYM-5056/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5056 +course_id: GYM-5056 permalink: /courses/take5/gym-5056/meta/ --- diff --git a/courses/take5/course-list-recent.html b/courses/take5/course-list-recent.html index 09579f3be..7979449f0 100644 --- a/courses/take5/course-list-recent.html +++ b/courses/take5/course-list-recent.html @@ -21,7 +21,7 @@ {%- for course_hash in catalog -%} {%- assign item = course_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -31,7 +31,7 @@ {%- for item in publish_order -%} {%- if site.data.take5[item].live == true -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -40,11 +40,11 @@ {%- for item in recent limit: 5 -%} {%- assign course = site.data.take5[item] -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} cover image. + {{ course.course_id | remove: 'gym-' }} {{ course.title }} cover image.
      Watch Now diff --git a/courses/take5/index.html b/courses/take5/index.html index daf36e280..8d49d6bdf 100644 --- a/courses/take5/index.html +++ b/courses/take5/index.html @@ -57,7 +57,7 @@

      {{ main.take5_tutorials.format }}

      {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -70,7 +70,7 @@

      {{ main.take5_tutorials.format }}

      {%- if site.data.take5[item].live == true -%} {%- if site.data.take5[item].featured == true -%} - {%- assign featured = site.data.take5[item].course_ID -%} + {%- assign featured = site.data.take5[item].course_id -%} {%- assign featured_title = site.data.take5[item].title -%} {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} @@ -80,12 +80,12 @@

      {{ main.take5_tutorials.format }}

      {%- assign featured_poster_art = site.data.take5[item].poster_art -%} {%- assign featured_video_duration = site.data.take5[item].video_duration -%} {%- else -%} - {%- comment -%} Not featured, but live? Add the course_ID to the RECENT list {%- endcomment -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not featured, but live? Add the course_id to the RECENT list {%- endcomment -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- else -%} - {%- comment -%} Not live? Add the course_ID to the UPCOMING list {%- endcomment -%} - {%- assign upcoming = upcoming | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not live? Add the course_id to the UPCOMING list {%- endcomment -%} + {%- assign upcoming = upcoming | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} diff --git a/courses/workshops/GYM-700/meta.md b/courses/workshops/GYM-700/meta.md index d294a9e08..4cd313d7e 100644 --- a/courses/workshops/GYM-700/meta.md +++ b/courses/workshops/GYM-700/meta.md @@ -1,6 +1,6 @@ --- layout: meta -course_ID: GYM-700 +course_id: GYM-700 permalink: /courses/workshops/gym-700/meta/ css: [/css/forum-hacks.css] --- diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index c86899521..1e7acbbb4 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -23,7 +23,7 @@ {% for course_hash in catalog %} {% assign item = course_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -33,7 +33,7 @@ {%- for item in publish_order -%} {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "workshop" -%} - {%- assign recent = recent | push: site.data.courses[item].course_ID -%} + {%- assign recent = recent | push: site.data.courses[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -41,14 +41,14 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.course_ID | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_ID | downcase | append: ".svg" -%} + {%- assign png_path = "/img/course-artwork/png/" | append: course.course_id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/course-artwork/svg/" | append: course.course_id | downcase | append: ".svg" -%} -
    • +
    • - {{ course.course_ID | remove: 'gym-' }} {{ course.title }} Cover Image + {{ course.course_id | remove: 'gym-' }} {{ course.title }} Cover Image
      Learn More diff --git a/docs/README.md b/docs/README.md index 598b480ad..2d6ce17f7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -22,7 +22,7 @@ This YAML file defines the key paramters for a Take 5. ```yaml --- -course_ID: GYM-5001 # Unique course ID +course_id: GYM-5001 # Unique course ID title: "Making a CSS Parallax Effect" # MUST be quoted date: 2019-10-28T00:00:00-04:00 # Publish date — MUST be in this format course_type: take5 # This is required @@ -31,7 +31,7 @@ poster_art: /img/take5/posters/gym-5001.jpg # Path to poster image (may be depre live: true # Only set to live when ready to publish! instructor: "Jeremy Osborn" # MUST be quoted topic: "Design & Development" # MUST be quoted -video_ID: zRNUPU2dujU # YouTube video ID +video_id: zRNUPU2dujU # YouTube video ID video_duration: "4:59" # Must be quoted featured: true # Toggle for display in catalog and hero description: "Learn how to create a scrolling background effect using CSS in this hands-on tutorial with Jeremy Osborn, Academic Director of Aquent Gymnasium." @@ -57,7 +57,7 @@ related_content: ```yaml --- -course_ID: GYM-5000 +course_id: GYM-5000 title: date: 2019-11-15T00:00:00-04:00 course_type: take5 @@ -66,7 +66,7 @@ poster_art: /img/take5/posters/gym-5000.jpg live: false instructor: topic: -video_ID: +video_id: video_duration: "0:00" featured: false description: @@ -139,7 +139,7 @@ The Take 5 stub page contains frontmatter and the full text from the video trans ```yaml --- layout: take5-raw -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001 --- @@ -158,7 +158,7 @@ The meta include stub file only contains frontmatter. ```yaml --- layout: meta -course_ID: GYM-5001 +course_id: GYM-5001 permalink: /courses/take5/gym-5001/meta/ --- ``` diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html index 4426dc4d9..20fb6ea3a 100644 --- a/feeds/_partials/courses.html +++ b/feeds/_partials/courses.html @@ -2,7 +2,7 @@ {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} {{data}} diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.html index df6fa3e88..298fe1bb9 100644 --- a/feeds/_partials/tutorials.html +++ b/feeds/_partials/tutorials.html @@ -2,10 +2,10 @@ {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'course_ID', 'id' -%} + {%- assign data = data | replace: 'course_id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} {%- assign data = data | replace: 'poster_art', 'img' -%} - {%- assign data = data | replace: 'video_ID', 'video_id' -%} + {%- assign data = data | replace: 'video_id', 'video_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.html index 849236877..819c7f4f2 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.html @@ -5,10 +5,10 @@ {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'title', 'title' -%} - {%- assign data = data | replace: 'event_ID', 'id' -%} + {%- assign data = data | replace: 'event_id', 'id' -%} {%- assign data = data | replace: 'content_category', 'category' -%} - {%- assign data = data | replace: 'video_ID', 'video_id' -%} - {%- assign data = data | replace: 'webinar_ID', 'webinar_id' -%} + {%- assign data = data | replace: 'video_id', 'video_id' -%} + {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/featured-courses.html b/feeds/featured-courses.html index f9ba3bd96..a2e0c5333 100644 --- a/feeds/featured-courses.html +++ b/feeds/featured-courses.html @@ -17,8 +17,8 @@ {%- for featured in featured_courses -%} -{%- assign artwork_png = site.data.courses[featured].course_ID | downcase | append: '.png' -%} -{%- assign artwork_svg = site.data.courses[featured].course_ID | downcase | append: '.svg' -%} +{%- assign artwork_png = site.data.courses[featured].course_id | downcase | append: '.png' -%} +{%- assign artwork_svg = site.data.courses[featured].course_id | downcase | append: '.svg' -%} {%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} {%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} diff --git a/feeds/webinars.json b/feeds/webinars.json index c46661305..55d4c3e81 100644 --- a/feeds/webinars.json +++ b/feeds/webinars.json @@ -9,7 +9,7 @@ permalink: /feeds/webinars.json {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} @@ -36,7 +36,7 @@ permalink: /feeds/webinars.json {%- assign webinar_url = data.permalink | prepend: site.gymurl -%} { - "id": "{{ data.event_ID | slice: 0,7 }}", + "id": "{{ data.event_id | slice: 0,7 }}", "slug": "{{ data.permalink | replace: '/webinars/', '' }}", "category": "{{ data.content_category }}", "date": "{{ data.event_date }}", @@ -66,8 +66,8 @@ permalink: /feeds/webinars.json "time_blurb": "Live streaming on {{ data.event_date | date: '%A, %B %-d, %Y at ' }}{{ data.event_time }}", "title": "{{ title }}", "video": {%- if data.video -%}{{data.video}}{%- else -%}false{%- endif -%}, - "video_id": "{{ data.video_ID }}", - "webinar_id": "{{ data.webinar_ID }}", + "video_id": "{{ data.video_id }}", + "webinar_id": "{{ data.webinar_id }}", "webinar_question_key": "{{ data.webinar_question_key }}" } {% unless forloop.last %},{% endunless %} diff --git a/hub-pages/collections/collections.html b/hub-pages/collections/collections.html index 179ebf396..2e6d547ae 100644 --- a/hub-pages/collections/collections.html +++ b/hub-pages/collections/collections.html @@ -24,7 +24,7 @@

      {{ main.collections.format | prepend: 'Content ' }}

      {%- assign hub_page = collection_hash[1] -%} {%- unless hub_page.exclude -%}
    • -
      +

      {{ hub_page.title }}

      diff --git a/partials/final-exam-modal.html b/partials/final-exam-modal.html index 04123391a..feda591d4 100644 --- a/partials/final-exam-modal.html +++ b/partials/final-exam-modal.html @@ -270,7 +270,7 @@

      Darn.

      let previous_score; - let COURSE_ID; + let COURSE_id; // this helper function gets a ton of information about the score for this particular problem // based on information embedded on this page @@ -280,8 +280,8 @@

      Darn.

      GYM_SHORT: 'GYM_SHORT', }; - COURSE_ID = parseInt($('#__course_number__').text(), 10); - const COURSE_TYPE = COURSE_ID >= 100 ? COURSE_TYPES.FULL_COURSE : COURSE_TYPES.GYM_SHORT; + COURSE_id = parseInt($('#__course_number__').text(), 10); + const COURSE_TYPE = COURSE_id >= 100 ? COURSE_TYPES.FULL_COURSE : COURSE_TYPES.GYM_SHORT; let PASSING_SCORE = 85; if (COURSE_TYPE === COURSE_TYPES.FULL_COURSE) { @@ -340,7 +340,7 @@

      Darn.

      // we have a score, let's do stuff if (score >= passingScore) { - // previous_score = getPrevScore(COURSE_ID); + // previous_score = getPrevScore(COURSE_id); // if (score > previous_score && attempts_remaining > 0) { // console.log('[gym] new high score! ', score, '\nprevious score: ', previous_score); @@ -394,9 +394,9 @@

      Darn.

      let problem_id = document.getElementById('exam-problem').getAttribute('data-id'); - COURSE_ID = parseInt(document.getElementById('__course_number__').innerText, 10); + COURSE_id = parseInt(document.getElementById('__course_number__').innerText, 10); - // previous_score = getPrevScore(COURSE_ID); + // previous_score = getPrevScore(COURSE_id); // console.log('[gym] exam page | previous score: ', previous_score); diff --git a/take5/catalog-blitz.html b/take5/catalog-blitz.html index 41f40cfb6..c7fc66cdc 100644 --- a/take5/catalog-blitz.html +++ b/take5/catalog-blitz.html @@ -41,7 +41,7 @@

      Take 5

      {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {%- endfor -%} @@ -54,7 +54,7 @@

      Take 5

      {%- if site.data.take5[item].live == true -%} {%- if site.data.take5[item].featured == true -%} - {%- assign featured = site.data.take5[item].course_ID -%} + {%- assign featured = site.data.take5[item].course_id -%} {%- assign featured_title = site.data.take5[item].title -%} {%- assign featured_description = site.data.take5[item].description -%} {%- assign featured_url = site.data.take5[item].title | slugify | prepend: base_path -%} @@ -63,12 +63,12 @@

      Take 5

      {%- assign featured_poster_art = site.data.take5[item].poster_art -%} {%- assign featured_video_duration = site.data.take5[item].video_duration -%} {%- else -%} - {%- comment -%} Not featured, but live? Add the course_ID to the RECENT list {%- endcomment -%} - {%- assign recent = recent | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not featured, but live? Add the course_id to the RECENT list {%- endcomment -%} + {%- assign recent = recent | push: site.data.take5[item].course_id -%} {%- endif -%} {%- else -%} - {%- comment -%} Not live? Add the course_ID to the UPCOMING list {%- endcomment -%} - {%- assign upcoming = upcoming | push: site.data.take5[item].course_ID -%} + {%- comment -%} Not live? Add the course_id to the UPCOMING list {%- endcomment -%} + {%- assign upcoming = upcoming | push: site.data.take5[item].course_id -%} {%- endif -%} {%- endfor -%} @@ -137,7 +137,7 @@

      Recent

      {%- comment -%} - Reverse the order of the recents (most recent = highest course_ID) + Reverse the order of the recents (most recent = highest course_id) {%- endcomment -%}
        {%- assign recent = recent | reverse -%} diff --git a/take5/catalog-debug.html b/take5/catalog-debug.html index 21168565c..a3d8159a6 100644 --- a/take5/catalog-debug.html +++ b/take5/catalog-debug.html @@ -25,8 +25,8 @@

        {{ item.title }}

      • URL: {{ item.url | relative_url }}
      • Date: {{ item.date }}
      • Live: {{ item.live }}
      • -
      • Course ID: {{ item.course_ID }}
      • -
      • Video ID: {{ item.video_ID }}
      • +
      • Course ID: {{ item.course_id }}
      • +
      • Video ID: {{ item.video_id }}
      • Video Duration: {{ item.video_duration }}
      • Instructor: {{ item.instructor }}
      • Topic: {{ item.topic }}
      • diff --git a/tests/catalog/full-lister.html b/tests/catalog/full-lister.html index 4a88d9db0..3bd806f59 100644 --- a/tests/catalog/full-lister.html +++ b/tests/catalog/full-lister.html @@ -10,12 +10,12 @@

        Courses

        {% for course_hash in sorted_catalog %} {% assign item = course_hash[1] %} - {% assign png_path = "/img/course-artwork/png/" | append: item.course_ID | downcase | append: ".png" %} - {% assign svg_path = "/img/course-artwork/svg/" | append: item.course_ID | downcase | append: ".svg" %} + {% assign png_path = "/img/course-artwork/png/" | append: item.course_id | downcase | append: ".png" %} + {% assign svg_path = "/img/course-artwork/svg/" | append: item.course_id | downcase | append: ".svg" %}

        {{ item.title }}

        -
        Course ID: {{ item.course_ID }}
        -
        Production URL: {{ item.course_ID }}
        +
        Course ID: {{ item.course_id }}
        +
        Production URL: {{ item.course_id }}
        Course Artwork PNG: {{ png_path | prepend: site.url }}
        Course Artwork SVG: {{ svg_path | prepend: site.url }}
        Description: {{ item.description }}
        @@ -43,7 +43,7 @@

        Take 5

        {% assign item = take5_hash[1] %} {%- if item.live -%}

        {{ item.title }}

        -
        Course ID: {{ item.course_ID }}
        +
        Course ID: {{ item.course_id }}
        Description: {{ item.description }}
        URL: {{ item.title | slugify | prepend: take5_path }}
        Poster Art: {{ item.poster_art | prepend: site.url }}
        diff --git a/tests/catalog/metas.html b/tests/catalog/metas.html index 6f243edeb..85b0363c0 100644 --- a/tests/catalog/metas.html +++ b/tests/catalog/metas.html @@ -37,7 +37,7 @@

        Course Meta Inspector

        {%- for item in catalog -%} - {%- assign id = item.course_ID -%} + {%- assign id = item.course_id -%} {%- assign course_prefix = id | remove: "GYM-" | slice: 0, 2 -%} {% comment %} Exceptions for Take5™ tutorials {% endcomment %} diff --git a/tests/catalog/test-lister.html b/tests/catalog/test-lister.html index df31d77a1..76c955695 100644 --- a/tests/catalog/test-lister.html +++ b/tests/catalog/test-lister.html @@ -23,7 +23,7 @@ - {{ item.course_ID }} + {{ item.course_id }} {% if item.title ==null %}MISSING VALUE{% else %} diff --git a/tests/featurer.html b/tests/featurer.html index 30ac4a76c..1c91b95dd 100644 --- a/tests/featurer.html +++ b/tests/featurer.html @@ -15,8 +15,8 @@ {%- for featured in featured_courses -%} -{%- assign artwork_png = site.data.courses[featured].course_ID | downcase | append: '.png' -%} -{%- assign artwork_svg = site.data.courses[featured].course_ID | downcase | append: '.svg' -%} +{%- assign artwork_png = site.data.courses[featured].course_id | downcase | append: '.png' -%} +{%- assign artwork_svg = site.data.courses[featured].course_id | downcase | append: '.svg' -%} {%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} {%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} diff --git a/tests/hero/hero-test-index.html b/tests/hero/hero-test-index.html index ef4a1fea5..b8766ec58 100644 --- a/tests/hero/hero-test-index.html +++ b/tests/hero/hero-test-index.html @@ -32,8 +32,8 @@

        Live Stream Hero

        or hero.embed_source == "" or hero.twitch_channel == undefined or hero.twitch_channel == "" - or hero.youtube_video_ID == undefined - or hero.youtube_video_ID == "" + or hero.youtube_video_id == undefined + or hero.youtube_video_id == "" %} error {% endif %} diff --git a/tests/take5/take5-content-test.html b/tests/take5/take5-content-test.html index 05508aa47..e66622e5c 100644 --- a/tests/take5/take5-content-test.html +++ b/tests/take5/take5-content-test.html @@ -73,7 +73,7 @@

        WARNING: There are {{ feature_count }} featured items!

        {% assign item = take5_hash[1] %} - {{ item.course_ID }} + {{ item.course_id }} {% if item.title == null %}MISSING VALUE{% else %} @@ -115,8 +115,8 @@

        WARNING: There are {{ feature_count }} featured items!

        {% endif %} - {% if item.video_ID == null %}MISSING VALUE{% else %} - {{ item.video_ID }} + {% if item.video_id == null %}MISSING VALUE{% else %} + {{ item.video_id }} {% endif %} @@ -137,12 +137,12 @@

        WARNING: There are {{ feature_count }} featured items!

        {% endif %} - {% assign meta_partial = item.course_ID | prepend: 'courses/take5/' | append: '/meta.md' %} + {% assign meta_partial = item.course_id | prepend: 'courses/take5/' | append: '/meta.md' %} {% capture meta_partial_test %}{% file_exists {{ meta_partial }} %}{% endcapture %} {% if meta_partial_test == "false" %}MISSING FILE{% else %} -
        {{ meta_partial_test }} + {{ meta_partial_test }} {% endif %} diff --git a/tests/take5/take5-date-lister.html b/tests/take5/take5-date-lister.html index 20f5988ce..5d7369ae7 100644 --- a/tests/take5/take5-date-lister.html +++ b/tests/take5/take5-date-lister.html @@ -26,7 +26,7 @@ {% for take5_hash in catalog %} {% assign item = take5_hash[1] %} {%- if item.date == pubdate -%} - {%- assign publish_order = publish_order | push: item.course_ID -%} + {%- assign publish_order = publish_order | push: item.course_id -%} {%- endif -%} {% endfor %} @@ -36,7 +36,7 @@ {%- for item in publish_order -%}
        -Course ID: {{ site.data.take5[item].course_ID }}
        +Course ID: {{ site.data.take5[item].course_id }}
         Title: {{ site.data.take5[item].title }}
         Publish Date: {{ site.data.take5[item].date }}
         Publish Date: {{ site.data.take5[item].date | date_to_string }}
        diff --git a/tests/take5/take5-lister.html b/tests/take5/take5-lister.html
        index a83247b0b..960501b40 100644
        --- a/tests/take5/take5-lister.html
        +++ b/tests/take5/take5-lister.html
        @@ -22,7 +22,7 @@
         
         
             
        -    {{ item.course_ID }}
        +    {{ item.course_id }}
             
             
             {% if item.title ==null %}MISSING VALUE{% else %}
        diff --git a/tests/take5/take5-publish-status.html b/tests/take5/take5-publish-status.html
        index 0c2bb3789..9989b817d 100644
        --- a/tests/take5/take5-publish-status.html
        +++ b/tests/take5/take5-publish-status.html
        @@ -24,7 +24,7 @@
             {% for take5_hash in catalog %}
                 {% assign item = take5_hash[1] %}
                 {%- if item.date == pubdate -%}
        -            {%- assign publish_order = publish_order | push: item.course_ID -%}
        +            {%- assign publish_order = publish_order | push: item.course_id -%}
                 {%- endif -%}
             {% endfor %}
         
        @@ -36,7 +36,7 @@
         {%- for item in publish_order -%}
         {%- if site.data.take5[item].live == true -%}
         
        -    {{ site.data.take5[item].course_ID }}
        +    {{ site.data.take5[item].course_id }}
             {{ site.data.take5[item].title }}
             {{ site.data.take5[item].date | date: "%m/%d/%Y" }}
             {{ site.data.take5[item].topic }}
        diff --git a/tests/take5/take5-url-test.html b/tests/take5/take5-url-test.html
        index abf8fc4cd..36cd6e60b 100644
        --- a/tests/take5/take5-url-test.html
        +++ b/tests/take5/take5-url-test.html
        @@ -61,7 +61,7 @@ 

        Take 5 Testing: Gymnasium Production URLs

        - {{ item.course_ID }} + {{ item.course_id }} {% if item.title ==null %} @@ -74,7 +74,7 @@

        Take 5 Testing: Gymnasium Production URLs

        {{ item.url | absolute_url }}
        - {% assign meta_url = item.course_ID | prepend: '/' | prepend: base_path | append: '/meta/' | downcase %} + {% assign meta_url = item.course_id | prepend: '/' | prepend: base_path | append: '/meta/' | downcase %}
        {{ meta_url | absolute_url }}
        diff --git a/tests/webinars/metas.html b/tests/webinars/metas.html index 4a300a29d..5b129430c 100644 --- a/tests/webinars/metas.html +++ b/tests/webinars/metas.html @@ -26,7 +26,7 @@

        Webinars Meta Inspector

        {%- for item in webinars -%} {%- assign event = item[1] -%} - {%- assign id = event.event_ID -%} + {%- assign id = event.event_id -%} {%- include partials/meta/logic-webinars.html -%} diff --git a/tests/webinars/webinars-test.html b/tests/webinars/webinars-test.html index 226d022c9..ee92afce8 100644 --- a/tests/webinars/webinars-test.html +++ b/tests/webinars/webinars-test.html @@ -42,7 +42,7 @@ {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} diff --git a/webinars/index.html b/webinars/index.html index cfccd5948..a54dbea7a 100644 --- a/webinars/index.html +++ b/webinars/index.html @@ -13,7 +13,7 @@ {% for webinar_list in sorted_webinars %} {% assign webinar = webinar_list[1] %} -{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_ID -%} +{%- assign webinars_ascending_date = webinars_ascending_date | push: webinar.event_id -%} {% endfor %} {%- assign webinars_descending_date = webinars_ascending_date | reverse -%} diff --git a/webinars/web0001/index.md b/webinars/web0001/index.md index b821f9500..ba715af92 100644 --- a/webinars/web0001/index.md +++ b/webinars/web0001/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0001-designing-for-understanding +event_id: web0001-designing-for-understanding permalink: /webinars/designing-for-understanding/ layout: webinar --- diff --git a/webinars/web0001/meta.md b/webinars/web0001/meta.md index b312c7c47..01bbb38c6 100644 --- a/webinars/web0001/meta.md +++ b/webinars/web0001/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0001-designing-for-understanding +event_id: web0001-designing-for-understanding permalink: /webinars/designing-for-understanding/meta/ layout: meta --- diff --git a/webinars/web0002/index.md b/webinars/web0002/index.md index 67b29b96e..c1c6cf4e9 100644 --- a/webinars/web0002/index.md +++ b/webinars/web0002/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0002-designing-for-real-people +event_id: web0002-designing-for-real-people permalink: /webinars/designing-for-real-people/ layout: webinar --- diff --git a/webinars/web0002/meta.md b/webinars/web0002/meta.md index 2f0c869e2..4d82d3f19 100644 --- a/webinars/web0002/meta.md +++ b/webinars/web0002/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0002-designing-for-real-people +event_id: web0002-designing-for-real-people permalink: /webinars/designing-for-real-people/meta/ layout: meta --- diff --git a/webinars/web0003/index.md b/webinars/web0003/index.md index 5831d5158..832e00b4f 100644 --- a/webinars/web0003/index.md +++ b/webinars/web0003/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0003-right-sizing-your-rapid-prototypes +event_id: web0003-right-sizing-your-rapid-prototypes permalink: /webinars/right-sizing-your-rapid-prototypes/ layout: webinar --- diff --git a/webinars/web0003/meta.md b/webinars/web0003/meta.md index 08c228ef7..2df7130d0 100644 --- a/webinars/web0003/meta.md +++ b/webinars/web0003/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0003-right-sizing-your-rapid-prototypes +event_id: web0003-right-sizing-your-rapid-prototypes permalink: /webinars/right-sizing-your-rapid-prototypes/meta/ layout: meta --- diff --git a/webinars/web0004/index.md b/webinars/web0004/index.md index bb78f55d9..4f36763d3 100644 --- a/webinars/web0004/index.md +++ b/webinars/web0004/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0004-web-design-is-hard +event_id: web0004-web-design-is-hard permalink: /webinars/web-design-is-hard/ layout: webinar --- diff --git a/webinars/web0004/meta.md b/webinars/web0004/meta.md index 6e5e4942d..36b3ddcdf 100644 --- a/webinars/web0004/meta.md +++ b/webinars/web0004/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0004-web-design-is-hard +event_id: web0004-web-design-is-hard permalink: /webinars/web-design-is-hard/meta/ layout: meta --- diff --git a/webinars/web0005/index.md b/webinars/web0005/index.md index 477d4aefc..9af7177da 100644 --- a/webinars/web0005/index.md +++ b/webinars/web0005/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0005-state-of-responsive-web-design +event_id: web0005-state-of-responsive-web-design permalink: /webinars/state-of-responsive-web-design/ layout: webinar --- diff --git a/webinars/web0005/meta.md b/webinars/web0005/meta.md index 1683dac79..4b0b62764 100644 --- a/webinars/web0005/meta.md +++ b/webinars/web0005/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0005-state-of-responsive-web-design +event_id: web0005-state-of-responsive-web-design permalink: /webinars/state-of-responsive-web-design/meta/ layout: meta --- diff --git a/webinars/web0006/index.md b/webinars/web0006/index.md index 3bf19c786..a8a381230 100644 --- a/webinars/web0006/index.md +++ b/webinars/web0006/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0006-keeping-up-with-javascript +event_id: web0006-keeping-up-with-javascript permalink: /webinars/keeping-up-with-javascript/ layout: webinar --- diff --git a/webinars/web0006/meta.md b/webinars/web0006/meta.md index 3892baaad..98857c130 100644 --- a/webinars/web0006/meta.md +++ b/webinars/web0006/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0006-keeping-up-with-javascript +event_id: web0006-keeping-up-with-javascript permalink: /webinars/keeping-up-with-javascript/meta/ layout: meta --- diff --git a/webinars/web0007/index.md b/webinars/web0007/index.md index 1ad06b1ea..307ee789a 100644 --- a/webinars/web0007/index.md +++ b/webinars/web0007/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0007-design-systems-and-creativity +event_id: web0007-design-systems-and-creativity permalink: /webinars/design-systems-and-creativity/ layout: webinar --- diff --git a/webinars/web0007/meta.md b/webinars/web0007/meta.md index 40de36a88..48d786047 100644 --- a/webinars/web0007/meta.md +++ b/webinars/web0007/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0007-design-systems-and-creativity +event_id: web0007-design-systems-and-creativity permalink: /webinars/design-systems-and-creativity/meta/ layout: meta --- diff --git a/webinars/web0008/index.md b/webinars/web0008/index.md index d5127010d..2092e0163 100644 --- a/webinars/web0008/index.md +++ b/webinars/web0008/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0008-rethinking-full-stack +event_id: web0008-rethinking-full-stack permalink: /webinars/rethinking-full-stack/ layout: webinar --- diff --git a/webinars/web0008/meta.md b/webinars/web0008/meta.md index 2dbc03bba..a2409443f 100644 --- a/webinars/web0008/meta.md +++ b/webinars/web0008/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0008-rethinking-full-stack +event_id: web0008-rethinking-full-stack permalink: /webinars/rethinking-full-stack/meta/ layout: meta --- diff --git a/webinars/web0009/index.md b/webinars/web0009/index.md index a74cebc77..3907c6bf3 100644 --- a/webinars/web0009/index.md +++ b/webinars/web0009/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0009-future-of-web-layout +event_id: web0009-future-of-web-layout permalink: /webinars/future-of-web-layout/ layout: webinar --- diff --git a/webinars/web0009/meta.md b/webinars/web0009/meta.md index b5f7c93e5..b08c7c2d3 100644 --- a/webinars/web0009/meta.md +++ b/webinars/web0009/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0009-future-of-web-layout +event_id: web0009-future-of-web-layout permalink: /webinars/future-of-web-layout/meta/ layout: meta --- diff --git a/webinars/web0010/index.md b/webinars/web0010/index.md index 8a7317735..8473e002a 100644 --- a/webinars/web0010/index.md +++ b/webinars/web0010/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0010-planning-before-pixels +event_id: web0010-planning-before-pixels permalink: /webinars/planning-before-pixels/ layout: webinar --- diff --git a/webinars/web0010/meta.md b/webinars/web0010/meta.md index 93bd95305..4da316abe 100644 --- a/webinars/web0010/meta.md +++ b/webinars/web0010/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0010-planning-before-pixels +event_id: web0010-planning-before-pixels permalink: /webinars/planning-before-pixels/meta/ layout: meta --- diff --git a/webinars/web0011/index.md b/webinars/web0011/index.md index 18993add4..ab1b9e89f 100644 --- a/webinars/web0011/index.md +++ b/webinars/web0011/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0011-prototyping-as-process +event_id: web0011-prototyping-as-process permalink: /webinars/prototyping-as-process/ layout: webinar --- diff --git a/webinars/web0011/meta.md b/webinars/web0011/meta.md index a16465241..869e914c4 100644 --- a/webinars/web0011/meta.md +++ b/webinars/web0011/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0011-prototyping-as-process +event_id: web0011-prototyping-as-process permalink: /webinars/prototyping-as-process/meta/ layout: meta --- diff --git a/webinars/web0012/index.md b/webinars/web0012/index.md index 59049fbe8..b6e0dd579 100644 --- a/webinars/web0012/index.md +++ b/webinars/web0012/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0012-remote-work +event_id: web0012-remote-work permalink: /webinars/remote-work/ layout: webinar --- diff --git a/webinars/web0012/meta.md b/webinars/web0012/meta.md index f0c761513..1287edd9d 100644 --- a/webinars/web0012/meta.md +++ b/webinars/web0012/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0012-remote-work +event_id: web0012-remote-work permalink: /webinars/remote-work/meta/ layout: meta --- diff --git a/webinars/web0013/index.md b/webinars/web0013/index.md index bbce7cd07..4d9adc49e 100644 --- a/webinars/web0013/index.md +++ b/webinars/web0013/index.md @@ -1,5 +1,5 @@ --- -event_ID: web0013-decade-of-responsive-web-design +event_id: web0013-decade-of-responsive-web-design permalink: /webinars/decade-of-responsive-web-design/ layout: webinar --- diff --git a/webinars/web0013/meta.md b/webinars/web0013/meta.md index fdefa5065..b1a4a2fcb 100644 --- a/webinars/web0013/meta.md +++ b/webinars/web0013/meta.md @@ -1,5 +1,5 @@ --- -event_ID: web0013-decade-of-responsive-web-design +event_id: web0013-decade-of-responsive-web-design permalink: /webinars/decade-of-responsive-web-design/meta/ layout: meta --- From 4dd57fc9b1bebfed34a2573bf2d45eb5f2af3099 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:31:14 -0400 Subject: [PATCH 37/67] Update _data_config.yml --- _data_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data_config.yml b/_data_config.yml index 6c20740bd..d8669484b 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,6 @@ # Setup title: Gymnasium Data Feeds -url: https://data.thegymcms.com +url: https://data--thegymcms.netlify.app #https://data.thegymcms.com gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York From e85c1c70b33546c5b7da4fa7e748e5ec6eb28e41 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 22 May 2023 12:35:43 -0400 Subject: [PATCH 38/67] standardize id key --- _data/courses/GYM-001.yml | 2 +- _data/courses/GYM-002.yml | 2 +- _data/courses/GYM-003.yml | 2 +- _data/courses/GYM-004.yml | 2 +- _data/courses/GYM-005.yml | 2 +- _data/courses/GYM-006.yml | 2 +- _data/courses/GYM-007.yml | 2 +- _data/courses/GYM-008.yml | 2 +- _data/courses/GYM-009.yml | 2 +- _data/courses/GYM-011.yml | 2 +- _data/courses/GYM-012.yml | 2 +- _data/courses/GYM-013.yml | 2 +- _data/courses/GYM-014.yml | 2 +- _data/courses/GYM-015.yml | 2 +- _data/courses/GYM-016.yml | 2 +- _data/courses/GYM-017.yml | 2 +- _data/courses/GYM-018.yml | 2 +- _data/courses/GYM-019.yml | 2 +- _data/courses/GYM-020.yml | 2 +- _data/courses/GYM-100.yml | 2 +- _data/courses/GYM-101.yml | 2 +- _data/courses/GYM-102.yml | 2 +- _data/courses/GYM-103.yml | 2 +- _data/courses/GYM-104.yml | 2 +- _data/courses/GYM-105.yml | 2 +- _data/courses/GYM-106.yml | 2 +- _data/courses/GYM-107.yml | 2 +- _data/courses/GYM-108.yml | 2 +- _data/courses/GYM-109.yml | 2 +- _data/take5/GYM-5001.yml | 2 +- _data/take5/GYM-5002.yml | 2 +- _data/take5/GYM-5003.yml | 2 +- _data/take5/GYM-5004.yml | 2 +- _data/take5/GYM-5005.yml | 2 +- _data/take5/GYM-5006.yml | 2 +- _data/take5/GYM-5007.yml | 2 +- _data/take5/GYM-5008.yml | 2 +- _data/take5/GYM-5009.yml | 2 +- _data/take5/GYM-5010.yml | 2 +- _data/take5/GYM-5011.yml | 2 +- _data/take5/GYM-5012.yml | 2 +- _data/take5/GYM-5013.yml | 2 +- _data/take5/GYM-5014.yml | 2 +- _data/take5/GYM-5015.yml | 2 +- _data/take5/GYM-5016.yml | 2 +- _data/take5/GYM-5017.yml | 2 +- _data/take5/GYM-5018.yml | 2 +- _data/take5/GYM-5019.yml | 2 +- _data/take5/GYM-5020.yml | 2 +- _data/take5/GYM-5021.yml | 2 +- _data/take5/GYM-5022.yml | 2 +- _data/take5/GYM-5023.yml | 2 +- _data/take5/GYM-5024.yml | 2 +- _data/take5/GYM-5025.yml | 2 +- _data/take5/GYM-5026.yml | 2 +- _data/take5/GYM-5027.yml | 2 +- _data/take5/GYM-5028.yml | 2 +- _data/take5/GYM-5029.yml | 2 +- _data/take5/GYM-5030.yml | 2 +- _data/take5/GYM-5031.yml | 2 +- _data/take5/GYM-5032.yml | 2 +- _data/take5/GYM-5033.yml | 2 +- _data/take5/GYM-5034.yml | 2 +- _data/take5/GYM-5035.yml | 2 +- _data/take5/GYM-5036.yml | 2 +- _data/take5/GYM-5037.yml | 2 +- _data/take5/GYM-5038.yml | 2 +- _data/take5/GYM-5039.yml | 2 +- _data/take5/GYM-5040.yml | 2 +- _data/take5/GYM-5041.yml | 2 +- _data/take5/GYM-5042.yml | 2 +- _data/take5/GYM-5043.yml | 2 +- _data/take5/GYM-5044.yml | 2 +- _data/take5/GYM-5045.yml | 2 +- _data/take5/GYM-5046.yml | 2 +- _data/take5/GYM-5047.yml | 2 +- _data/take5/GYM-5048.yml | 2 +- _data/take5/GYM-5049.yml | 2 +- _data/take5/GYM-5050.yml | 2 +- _data/take5/GYM-5051.yml | 2 +- _data/take5/GYM-5052.yml | 2 +- _data/take5/GYM-5053.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- .../web0001-designing-for-understanding.yml | 2 +- .../webinars/web0002-designing-for-real-people.yml | 2 +- .../web0003-right-sizing-your-rapid-prototypes.yml | 2 +- _data/webinars/web0004-web-design-is-hard.yml | 2 +- .../web0005-state-of-responsive-web-design.yml | 2 +- .../web0006-keeping-up-with-javascript.yml | 2 +- .../web0007-design-systems-and-creativity.yml | 2 +- _data/webinars/web0008-rethinking-full-stack.yml | 2 +- _data/webinars/web0009-future-of-web-layout.yml | 2 +- _data/webinars/web0010-planning-before-pixels.yml | 2 +- _data/webinars/web0011-prototyping-as-process.yml | 2 +- _data/webinars/web0012-remote-work.yml | 2 +- .../web0013-decade-of-responsive-web-design.yml | 2 +- _data/workshops/GYM-700.yml | 2 +- _includes/heros/hero-take5-featured.html | 2 +- _includes/home/featured-courses.html | 4 ++-- _includes/partials/meta/logic-courses.html | 2 +- _includes/partials/meta/logic-take5.html | 2 +- _includes/partials/meta/logic-webinars.html | 4 ++-- _includes/partials/meta/logic.html | 4 ++-- _includes/take5/recommended-content.html | 14 +++++++------- _layouts/take5-raw.html | 6 +++--- _layouts/webinar.html | 2 +- courses/full/GYM-100/meta.md | 2 +- courses/full/GYM-101/meta.md | 2 +- courses/full/GYM-102/meta.md | 2 +- courses/full/GYM-103/meta.md | 2 +- courses/full/GYM-104/meta.md | 2 +- courses/full/GYM-105/meta.md | 2 +- courses/full/GYM-106/meta.md | 2 +- courses/full/GYM-107/meta.md | 2 +- courses/full/GYM-108/meta.md | 2 +- courses/full/GYM-109/meta.md | 2 +- courses/full/course-list-recent.html | 12 ++++++------ courses/gym-shorts/GYM-001/meta.md | 2 +- courses/gym-shorts/GYM-002/meta.md | 2 +- courses/gym-shorts/GYM-003/meta.md | 2 +- courses/gym-shorts/GYM-004/meta.md | 2 +- courses/gym-shorts/GYM-005/meta.md | 2 +- courses/gym-shorts/GYM-006/meta.md | 2 +- courses/gym-shorts/GYM-007/meta.md | 2 +- courses/gym-shorts/GYM-008/meta.md | 2 +- courses/gym-shorts/GYM-009/meta.md | 2 +- courses/gym-shorts/GYM-011/meta.md | 2 +- courses/gym-shorts/GYM-012/meta.md | 2 +- courses/gym-shorts/GYM-013/meta.md | 2 +- courses/gym-shorts/GYM-014/meta.md | 2 +- courses/gym-shorts/GYM-015/meta.md | 2 +- courses/gym-shorts/GYM-016/meta.md | 2 +- courses/gym-shorts/GYM-017/meta.md | 2 +- courses/gym-shorts/GYM-018/meta.md | 2 +- courses/gym-shorts/GYM-019/meta.md | 2 +- courses/gym-shorts/GYM-020/meta.md | 2 +- courses/gym-shorts/course-list-recent.html | 12 ++++++------ courses/take5/GYM-5001/index.md | 2 +- courses/take5/GYM-5001/meta.md | 2 +- courses/take5/GYM-5002/index.md | 2 +- courses/take5/GYM-5002/meta.md | 2 +- courses/take5/GYM-5003/index.md | 2 +- courses/take5/GYM-5003/meta.md | 2 +- courses/take5/GYM-5004/index.md | 2 +- courses/take5/GYM-5004/meta.md | 2 +- courses/take5/GYM-5005/index.md | 2 +- courses/take5/GYM-5005/meta.md | 2 +- courses/take5/GYM-5006/index.md | 2 +- courses/take5/GYM-5006/meta.md | 2 +- courses/take5/GYM-5007/index.md | 2 +- courses/take5/GYM-5007/meta.md | 2 +- courses/take5/GYM-5008/index.md | 2 +- courses/take5/GYM-5008/meta.md | 2 +- courses/take5/GYM-5009/index.md | 2 +- courses/take5/GYM-5009/meta.md | 2 +- courses/take5/GYM-5010/index.md | 2 +- courses/take5/GYM-5010/meta.md | 2 +- courses/take5/GYM-5011/index.md | 2 +- courses/take5/GYM-5011/meta.md | 2 +- courses/take5/GYM-5012/index.md | 2 +- courses/take5/GYM-5012/meta.md | 2 +- courses/take5/GYM-5013/index.md | 2 +- courses/take5/GYM-5013/meta.md | 2 +- courses/take5/GYM-5014/index.md | 2 +- courses/take5/GYM-5014/meta.md | 2 +- courses/take5/GYM-5015/index.md | 2 +- courses/take5/GYM-5015/meta.md | 2 +- courses/take5/GYM-5016/index.md | 2 +- courses/take5/GYM-5016/meta.md | 2 +- courses/take5/GYM-5017/index.md | 2 +- courses/take5/GYM-5017/meta.md | 2 +- courses/take5/GYM-5018/index.md | 2 +- courses/take5/GYM-5018/meta.md | 2 +- courses/take5/GYM-5019/index.md | 2 +- courses/take5/GYM-5019/meta.md | 2 +- courses/take5/GYM-5020/index.md | 2 +- courses/take5/GYM-5020/meta.md | 2 +- courses/take5/GYM-5021/index.md | 2 +- courses/take5/GYM-5021/meta.md | 2 +- courses/take5/GYM-5022/index.md | 2 +- courses/take5/GYM-5022/meta.md | 2 +- courses/take5/GYM-5023/index.md | 2 +- courses/take5/GYM-5023/meta.md | 2 +- courses/take5/GYM-5024/index.md | 2 +- courses/take5/GYM-5024/meta.md | 2 +- courses/take5/GYM-5025/index.md | 2 +- courses/take5/GYM-5025/meta.md | 2 +- courses/take5/GYM-5026/index.md | 2 +- courses/take5/GYM-5026/meta.md | 2 +- courses/take5/GYM-5027/index.md | 2 +- courses/take5/GYM-5027/meta.md | 2 +- courses/take5/GYM-5028/index.md | 2 +- courses/take5/GYM-5028/meta.md | 2 +- courses/take5/GYM-5029/index.md | 2 +- courses/take5/GYM-5029/meta.md | 2 +- courses/take5/GYM-5030/index.md | 2 +- courses/take5/GYM-5030/meta.md | 2 +- courses/take5/GYM-5031/index.md | 2 +- courses/take5/GYM-5031/meta.md | 2 +- courses/take5/GYM-5032/index.md | 2 +- courses/take5/GYM-5032/meta.md | 2 +- courses/take5/GYM-5033/index.md | 2 +- courses/take5/GYM-5033/meta.md | 2 +- courses/take5/GYM-5034/index.md | 2 +- courses/take5/GYM-5034/meta.md | 2 +- courses/take5/GYM-5035/index.md | 2 +- courses/take5/GYM-5035/meta.md | 2 +- courses/take5/GYM-5036/index.md | 2 +- courses/take5/GYM-5036/meta.md | 2 +- courses/take5/GYM-5037/index.md | 2 +- courses/take5/GYM-5037/meta.md | 2 +- courses/take5/GYM-5038/index.md | 2 +- courses/take5/GYM-5038/meta.md | 2 +- courses/take5/GYM-5039/index.md | 2 +- courses/take5/GYM-5039/meta.md | 2 +- courses/take5/GYM-5040/index.md | 2 +- courses/take5/GYM-5040/meta.md | 2 +- courses/take5/GYM-5041/index.md | 2 +- courses/take5/GYM-5041/meta.md | 2 +- courses/take5/GYM-5042/index.md | 2 +- courses/take5/GYM-5042/meta.md | 2 +- courses/take5/GYM-5043/index.md | 2 +- courses/take5/GYM-5043/meta.md | 2 +- courses/take5/GYM-5044/index.md | 2 +- courses/take5/GYM-5044/meta.md | 2 +- courses/take5/GYM-5045/index.md | 2 +- courses/take5/GYM-5045/meta.md | 2 +- courses/take5/GYM-5046/index.md | 2 +- courses/take5/GYM-5046/meta.md | 2 +- courses/take5/GYM-5047/index.md | 2 +- courses/take5/GYM-5047/meta.md | 2 +- courses/take5/GYM-5048/index.md | 2 +- courses/take5/GYM-5048/meta.md | 2 +- courses/take5/GYM-5049/index.md | 2 +- courses/take5/GYM-5049/meta.md | 2 +- courses/take5/GYM-5050/index.md | 2 +- courses/take5/GYM-5050/meta.md | 2 +- courses/take5/GYM-5051/index.md | 2 +- courses/take5/GYM-5051/meta.md | 2 +- courses/take5/GYM-5052/index.md | 2 +- courses/take5/GYM-5052/meta.md | 2 +- courses/take5/GYM-5053/index.md | 2 +- courses/take5/GYM-5053/meta.md | 2 +- courses/take5/GYM-5056/index.md | 2 +- courses/take5/GYM-5056/meta.md | 2 +- courses/take5/course-list-recent.html | 8 ++++---- courses/take5/index.html | 12 ++++++------ courses/workshops/GYM-700/meta.md | 2 +- courses/workshops/course-list-recent.html | 12 ++++++------ docs/README.md | 8 ++++---- feeds/_partials/courses.html | 2 +- feeds/_partials/tutorials.html | 2 +- feeds/_partials/webinars.html | 2 +- feeds/featured-courses.html | 4 ++-- feeds/webinars.json | 4 ++-- partials/final-exam-modal.html | 2 +- take5/catalog-blitz.html | 14 +++++++------- take5/catalog-debug.html | 2 +- tests/catalog/full-lister.html | 10 +++++----- tests/catalog/metas.html | 2 +- tests/catalog/test-lister.html | 2 +- tests/featurer.html | 4 ++-- tests/take5/take5-content-test.html | 6 +++--- tests/take5/take5-date-lister.html | 4 ++-- tests/take5/take5-lister.html | 2 +- tests/take5/take5-publish-status.html | 4 ++-- tests/take5/take5-url-test.html | 4 ++-- tests/webinars/metas.html | 2 +- tests/webinars/webinars-test.html | 2 +- webinars/index.html | 2 +- webinars/web0001/index.md | 2 +- webinars/web0001/meta.md | 2 +- webinars/web0002/index.md | 2 +- webinars/web0002/meta.md | 2 +- webinars/web0003/index.md | 2 +- webinars/web0003/meta.md | 2 +- webinars/web0004/index.md | 2 +- webinars/web0004/meta.md | 2 +- webinars/web0005/index.md | 2 +- webinars/web0005/meta.md | 2 +- webinars/web0006/index.md | 2 +- webinars/web0006/meta.md | 2 +- webinars/web0007/index.md | 2 +- webinars/web0007/meta.md | 2 +- webinars/web0008/index.md | 2 +- webinars/web0008/meta.md | 2 +- webinars/web0009/index.md | 2 +- webinars/web0009/meta.md | 2 +- webinars/web0010/index.md | 2 +- webinars/web0010/meta.md | 2 +- webinars/web0011/index.md | 2 +- webinars/web0011/meta.md | 2 +- webinars/web0012/index.md | 2 +- webinars/web0012/meta.md | 2 +- webinars/web0013/index.md | 2 +- webinars/web0013/meta.md | 2 +- 296 files changed, 351 insertions(+), 351 deletions(-) diff --git a/_data/courses/GYM-001.yml b/_data/courses/GYM-001.yml index 38231dc98..f2d5e46e1 100644 --- a/_data/courses/GYM-001.yml +++ b/_data/courses/GYM-001.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-001 +id: GYM-001 title: "Defeating Busy" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-002.yml b/_data/courses/GYM-002.yml index 1b8bdbe0f..16d51361e 100644 --- a/_data/courses/GYM-002.yml +++ b/_data/courses/GYM-002.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-002 +id: GYM-002 title: "Introducing Node.js" date: 2022-05-27T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-003.yml b/_data/courses/GYM-003.yml index a434e24a9..3d59b4d1c 100644 --- a/_data/courses/GYM-003.yml +++ b/_data/courses/GYM-003.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-003 +id: GYM-003 title: "Grid Layout in Bootstrap 3" date: 2022-05-26T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-004.yml b/_data/courses/GYM-004.yml index 8f421d7b7..6c035c65a 100644 --- a/_data/courses/GYM-004.yml +++ b/_data/courses/GYM-004.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-004 +id: GYM-004 title: "Creating A WordPress Theme" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-005.yml b/_data/courses/GYM-005.yml index b89ff699a..f815ba847 100644 --- a/_data/courses/GYM-005.yml +++ b/_data/courses/GYM-005.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-005 +id: GYM-005 title: "Introducing Sketch for UX and UI" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-006.yml b/_data/courses/GYM-006.yml index 6f1875a09..a13ebb741 100644 --- a/_data/courses/GYM-006.yml +++ b/_data/courses/GYM-006.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-006 +id: GYM-006 title: "Introduction to Git and GitHub" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-007.yml b/_data/courses/GYM-007.yml index b43a941ea..96f6b5c77 100644 --- a/_data/courses/GYM-007.yml +++ b/_data/courses/GYM-007.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-007 +id: GYM-007 title: "Structuring and Organizing HTML5 Forms" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-008.yml b/_data/courses/GYM-008.yml index eda5f49fa..c7a3774c2 100644 --- a/_data/courses/GYM-008.yml +++ b/_data/courses/GYM-008.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-008 +id: GYM-008 title: "Advanced Rapid Prototyping with Axure" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-009.yml b/_data/courses/GYM-009.yml index dfb13f8a1..5669d0ed7 100644 --- a/_data/courses/GYM-009.yml +++ b/_data/courses/GYM-009.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-009 +id: GYM-009 title: "Creating A Drupal 8 Theme" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-011.yml b/_data/courses/GYM-011.yml index 1818253e4..0c36a3f65 100644 --- a/_data/courses/GYM-011.yml +++ b/_data/courses/GYM-011.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-011 +id: GYM-011 title: "Build Better Websites With Chrome Developer Tools" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-012.yml b/_data/courses/GYM-012.yml index 9d70e00db..d0a02da73 100644 --- a/_data/courses/GYM-012.yml +++ b/_data/courses/GYM-012.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-012 +id: GYM-012 title: "Introduction to Node.js" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-013.yml b/_data/courses/GYM-013.yml index 88b867f34..98bac3b8b 100644 --- a/_data/courses/GYM-013.yml +++ b/_data/courses/GYM-013.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-013 +id: GYM-013 title: "3D Modeling for Virtual Reality Creation" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-014.yml b/_data/courses/GYM-014.yml index 6ab5489af..7b9b03869 100644 --- a/_data/courses/GYM-014.yml +++ b/_data/courses/GYM-014.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-014 +id: GYM-014 title: "Working with Atomic Design and Pattern Lab" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-015.yml b/_data/courses/GYM-015.yml index 4918c1f78..992215c75 100644 --- a/_data/courses/GYM-015.yml +++ b/_data/courses/GYM-015.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-015 +id: GYM-015 title: "Prototyping for Digital Products and Websites" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-016.yml b/_data/courses/GYM-016.yml index 9ebec56cc..1d64c9d19 100644 --- a/_data/courses/GYM-016.yml +++ b/_data/courses/GYM-016.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-016 +id: GYM-016 title: "Designing Accessible and Responsive Websites" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-017.yml b/_data/courses/GYM-017.yml index 41a2cf57e..5dc2a090d 100644 --- a/_data/courses/GYM-017.yml +++ b/_data/courses/GYM-017.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-017 +id: GYM-017 title: "Design Systems for Everyone" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-018.yml b/_data/courses/GYM-018.yml index 328ae902c..351b47941 100644 --- a/_data/courses/GYM-018.yml +++ b/_data/courses/GYM-018.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-018 +id: GYM-018 title: "Design Systems for Designers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-019.yml b/_data/courses/GYM-019.yml index c94ed63c5..6f775ba54 100644 --- a/_data/courses/GYM-019.yml +++ b/_data/courses/GYM-019.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-019 +id: GYM-019 title: "Design Systems for Developers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-020.yml b/_data/courses/GYM-020.yml index 0cf20bf7b..b55da53e5 100644 --- a/_data/courses/GYM-020.yml +++ b/_data/courses/GYM-020.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-020 +id: GYM-020 title: "Design Systems for Product Managers" date: 2019-10-28T00:00:00-04:00 course_type: short diff --git a/_data/courses/GYM-100.yml b/_data/courses/GYM-100.yml index 53fcba098..d1a30feee 100644 --- a/_data/courses/GYM-100.yml +++ b/_data/courses/GYM-100.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-100 +id: GYM-100 title: "Coding for Designers" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-101.yml b/_data/courses/GYM-101.yml index d5b8623b9..152451ddf 100644 --- a/_data/courses/GYM-101.yml +++ b/_data/courses/GYM-101.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-101 +id: GYM-101 title: "Responsive Web Design" date: 2022-05-27T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-102.yml b/_data/courses/GYM-102.yml index 558cf63cb..530c52c66 100644 --- a/_data/courses/GYM-102.yml +++ b/_data/courses/GYM-102.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-102 +id: GYM-102 title: "jQuery Building Blocks" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-103.yml b/_data/courses/GYM-103.yml index 8f99b4c0f..4d2099809 100644 --- a/_data/courses/GYM-103.yml +++ b/_data/courses/GYM-103.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-103 +id: GYM-103 title: "UX Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-104.yml b/_data/courses/GYM-104.yml index 0c8af7901..afa8b387a 100644 --- a/_data/courses/GYM-104.yml +++ b/_data/courses/GYM-104.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-104 +id: GYM-104 title: "JavaScript Foundations" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-105.yml b/_data/courses/GYM-105.yml index 0280f3d56..7d511ec0e 100644 --- a/_data/courses/GYM-105.yml +++ b/_data/courses/GYM-105.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-105 +id: GYM-105 title: "Writing for Web & Mobile" date: 2022-05-26T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-106.yml b/_data/courses/GYM-106.yml index ed8b4cc6d..6db263fba 100644 --- a/_data/courses/GYM-106.yml +++ b/_data/courses/GYM-106.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-106 +id: GYM-106 title: "Information Design & Visualization Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-107.yml b/_data/courses/GYM-107.yml index 5eed4924b..e0b282ca3 100644 --- a/_data/courses/GYM-107.yml +++ b/_data/courses/GYM-107.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-107 +id: GYM-107 title: "Modern Web Design" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-108.yml b/_data/courses/GYM-108.yml index a6d0b8562..d4e4a18c5 100644 --- a/_data/courses/GYM-108.yml +++ b/_data/courses/GYM-108.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-108 +id: GYM-108 title: "JavaScript and jQuery Survival Guide" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/courses/GYM-109.yml b/_data/courses/GYM-109.yml index 06ceca68f..399287c04 100644 --- a/_data/courses/GYM-109.yml +++ b/_data/courses/GYM-109.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-109 +id: GYM-109 title: "Responsive Web Design Fundamentals" date: 2019-10-28T00:00:00-04:00 course_type: full diff --git a/_data/take5/GYM-5001.yml b/_data/take5/GYM-5001.yml index 2bf5b81b6..4120de075 100644 --- a/_data/take5/GYM-5001.yml +++ b/_data/take5/GYM-5001.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5001 +id: GYM-5001 title: "Making a CSS Parallax Effect" date: 2019-10-28T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5002.yml b/_data/take5/GYM-5002.yml index 3afe2dd97..17fea333b 100644 --- a/_data/take5/GYM-5002.yml +++ b/_data/take5/GYM-5002.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5002 +id: GYM-5002 title: "Creating a CSS Knockout Text Effect" date: 2019-10-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5003.yml b/_data/take5/GYM-5003.yml index 87819a57e..893e983e2 100644 --- a/_data/take5/GYM-5003.yml +++ b/_data/take5/GYM-5003.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5003 +id: GYM-5003 title: "Adding a CSS Gradient Overlay to an Image" date: 2019-10-30T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5004.yml b/_data/take5/GYM-5004.yml index 7b43511e1..1fb24c452 100644 --- a/_data/take5/GYM-5004.yml +++ b/_data/take5/GYM-5004.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5004 +id: GYM-5004 title: "Working with CSS Feature Queries" date: 2019-10-31T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5005.yml b/_data/take5/GYM-5005.yml index abc1f2a33..81846e55d 100644 --- a/_data/take5/GYM-5005.yml +++ b/_data/take5/GYM-5005.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5005 +id: GYM-5005 title: "Creating a Duotone with CSS" date: 2019-11-01T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5006.yml b/_data/take5/GYM-5006.yml index 93d925bc4..3ff98ac2a 100644 --- a/_data/take5/GYM-5006.yml +++ b/_data/take5/GYM-5006.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5006 +id: GYM-5006 title: "Leading a Card Sorting Session" date: 2019-11-18T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5007.yml b/_data/take5/GYM-5007.yml index 73504011b..7fe98ca46 100644 --- a/_data/take5/GYM-5007.yml +++ b/_data/take5/GYM-5007.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5007 +id: GYM-5007 title: "Conducting Customer Interviews" date: 2019-11-19T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5008.yml b/_data/take5/GYM-5008.yml index 95b3682ee..a6d2723e3 100644 --- a/_data/take5/GYM-5008.yml +++ b/_data/take5/GYM-5008.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5008 +id: GYM-5008 title: "Writing Effective Survey Questions" date: 2019-11-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5009.yml b/_data/take5/GYM-5009.yml index 80f64e1f5..e509880bd 100644 --- a/_data/take5/GYM-5009.yml +++ b/_data/take5/GYM-5009.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5009 +id: GYM-5009 title: "Leading Your First Usability Test" date: 2019-11-21T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5010.yml b/_data/take5/GYM-5010.yml index 3c2fb3b5c..0c89f7261 100644 --- a/_data/take5/GYM-5010.yml +++ b/_data/take5/GYM-5010.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5010 +id: GYM-5010 title: "Using the KJ Method" date: 2019-11-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5011.yml b/_data/take5/GYM-5011.yml index 6e6701298..fecd338e5 100644 --- a/_data/take5/GYM-5011.yml +++ b/_data/take5/GYM-5011.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5011 +id: GYM-5011 title: "Using Smart Layout in Sketch" date: 2019-11-04T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5012.yml b/_data/take5/GYM-5012.yml index bffc0512c..7e55e232a 100644 --- a/_data/take5/GYM-5012.yml +++ b/_data/take5/GYM-5012.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5012 +id: GYM-5012 title: "Prototyping in the Browser with CSS Grid Layout" date: 2019-11-05T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5013.yml b/_data/take5/GYM-5013.yml index 2652909fb..861ec310b 100644 --- a/_data/take5/GYM-5013.yml +++ b/_data/take5/GYM-5013.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5013 +id: GYM-5013 title: "Working with the Timeline in InVision Studio" date: 2019-11-06T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5014.yml b/_data/take5/GYM-5014.yml index 638f50b34..443158730 100644 --- a/_data/take5/GYM-5014.yml +++ b/_data/take5/GYM-5014.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5014 +id: GYM-5014 title: "Using Auto-Animate in Adobe XD" date: 2019-11-07T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5015.yml b/_data/take5/GYM-5015.yml index e121384fb..fb3a19e49 100644 --- a/_data/take5/GYM-5015.yml +++ b/_data/take5/GYM-5015.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5015 +id: GYM-5015 title: "Creating Advanced Animations in Figma" date: 2019-11-08T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5016.yml b/_data/take5/GYM-5016.yml index 93256aef9..15cec3fac 100644 --- a/_data/take5/GYM-5016.yml +++ b/_data/take5/GYM-5016.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5016 +id: GYM-5016 title: "Storytelling for Designers" date: 2019-11-11T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5017.yml b/_data/take5/GYM-5017.yml index bad5a88d1..bdd2f2e86 100644 --- a/_data/take5/GYM-5017.yml +++ b/_data/take5/GYM-5017.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5017 +id: GYM-5017 title: "How to Tell the Story of a Mid-Career Pivot" date: 2019-11-12T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5018.yml b/_data/take5/GYM-5018.yml index ff9040595..1a7d3f56c 100644 --- a/_data/take5/GYM-5018.yml +++ b/_data/take5/GYM-5018.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5018 +id: GYM-5018 title: "Crafting Your Story" date: 2019-11-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5019.yml b/_data/take5/GYM-5019.yml index 0353b952a..2eebb86fd 100644 --- a/_data/take5/GYM-5019.yml +++ b/_data/take5/GYM-5019.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5019 +id: GYM-5019 title: "Self-Promotion Through Your Online Presence" date: 2019-11-14T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5020.yml b/_data/take5/GYM-5020.yml index 9306674fc..377f2f459 100644 --- a/_data/take5/GYM-5020.yml +++ b/_data/take5/GYM-5020.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5020 +id: GYM-5020 title: "Knowing Your Audience" date: 2019-11-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5021.yml b/_data/take5/GYM-5021.yml index 3bf634a3e..6c2e63a96 100644 --- a/_data/take5/GYM-5021.yml +++ b/_data/take5/GYM-5021.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5021 +id: GYM-5021 title: "Using CSS Generated Content for Links" date: 2019-12-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5022.yml b/_data/take5/GYM-5022.yml index 2afca426b..fbce47301 100644 --- a/_data/take5/GYM-5022.yml +++ b/_data/take5/GYM-5022.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5022 +id: GYM-5022 title: "Creating a Pixel Perfect Icon in Sketch" date: 2019-12-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5023.yml b/_data/take5/GYM-5023.yml index c3524c417..83741f753 100644 --- a/_data/take5/GYM-5023.yml +++ b/_data/take5/GYM-5023.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5023 +id: GYM-5023 title: "Creating A Harmonious Color Scheme with HSL" date: 2020-01-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5024.yml b/_data/take5/GYM-5024.yml index b75b37cf3..d56aaa14d 100644 --- a/_data/take5/GYM-5024.yml +++ b/_data/take5/GYM-5024.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5024 +id: GYM-5024 title: "Writing CSS Media Queries For Responsive Design" date: 2020-01-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5025.yml b/_data/take5/GYM-5025.yml index 84a89d709..a84c69bcc 100644 --- a/_data/take5/GYM-5025.yml +++ b/_data/take5/GYM-5025.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5025 +id: GYM-5025 title: "Getting Started with CSS Variables" date: 2020-01-27T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5026.yml b/_data/take5/GYM-5026.yml index 319140f49..69068e04d 100644 --- a/_data/take5/GYM-5026.yml +++ b/_data/take5/GYM-5026.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5026 +id: GYM-5026 title: "Publishing Your First GitHub Pages Website" date: 2020-02-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5027.yml b/_data/take5/GYM-5027.yml index 97239bc75..c4d1e851f 100644 --- a/_data/take5/GYM-5027.yml +++ b/_data/take5/GYM-5027.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5027 +id: GYM-5027 title: "Managing Your Time Like a Pro" date: 2020-02-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5028.yml b/_data/take5/GYM-5028.yml index 92853feb4..c40da9eb3 100644 --- a/_data/take5/GYM-5028.yml +++ b/_data/take5/GYM-5028.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5028 +id: GYM-5028 title: "Adding a Dark Mode Theme to Your Website" date: 2020-02-17T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5029.yml b/_data/take5/GYM-5029.yml index addb2715c..478077d99 100644 --- a/_data/take5/GYM-5029.yml +++ b/_data/take5/GYM-5029.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5029 +id: GYM-5029 title: "Animating Microinteractions with Figma" date: 2020-02-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5030.yml b/_data/take5/GYM-5030.yml index 9c3e770cd..5d949f0c0 100644 --- a/_data/take5/GYM-5030.yml +++ b/_data/take5/GYM-5030.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5030 +id: GYM-5030 title: "Working with Overlays in Figma" date: 2020-03-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5031.yml b/_data/take5/GYM-5031.yml index 921d4c787..e9ffa2f2d 100644 --- a/_data/take5/GYM-5031.yml +++ b/_data/take5/GYM-5031.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5031 +id: GYM-5031 title: "Creating an Interactive Chart for the Web" date: 2020-03-31T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5032.yml b/_data/take5/GYM-5032.yml index 1a0c58950..3710305fe 100644 --- a/_data/take5/GYM-5032.yml +++ b/_data/take5/GYM-5032.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5032 +id: GYM-5032 title: "Introduction to Screen Readers Using VoiceOver" date: 2020-06-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5033.yml b/_data/take5/GYM-5033.yml index b5bca22f1..c01443634 100644 --- a/_data/take5/GYM-5033.yml +++ b/_data/take5/GYM-5033.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5033 +id: GYM-5033 title: "Designing Beautiful Focus States" date: 2020-06-23T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5034.yml b/_data/take5/GYM-5034.yml index 0144d597d..5c9173542 100644 --- a/_data/take5/GYM-5034.yml +++ b/_data/take5/GYM-5034.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5034 +id: GYM-5034 title: "Flexible and Accessible Typesetting" date: 2020-06-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5035.yml b/_data/take5/GYM-5035.yml index d82fbc629..6c76d6f3b 100644 --- a/_data/take5/GYM-5035.yml +++ b/_data/take5/GYM-5035.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5035 +id: GYM-5035 title: "Responsively Designing with Viewport Units" date: 2020-06-25T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5036.yml b/_data/take5/GYM-5036.yml index 560b2cb1b..4e7431624 100644 --- a/_data/take5/GYM-5036.yml +++ b/_data/take5/GYM-5036.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5036 +id: GYM-5036 title: "Creating Beautiful and Accessible Drop Caps" date: 2020-06-26T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5037.yml b/_data/take5/GYM-5037.yml index 8e0a1e8e9..81cf108a8 100644 --- a/_data/take5/GYM-5037.yml +++ b/_data/take5/GYM-5037.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5037 +id: GYM-5037 title: "Understanding Document Structure Accessibility" date: 2020-09-02T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5038.yml b/_data/take5/GYM-5038.yml index f5840a766..efd4a6390 100644 --- a/_data/take5/GYM-5038.yml +++ b/_data/take5/GYM-5038.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5038 +id: GYM-5038 title: "Making Headings and Lists More Accessible" date: 2020-09-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5039.yml b/_data/take5/GYM-5039.yml index 943406d4d..f9e83f543 100644 --- a/_data/take5/GYM-5039.yml +++ b/_data/take5/GYM-5039.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5039 +id: GYM-5039 title: "Designing Accessible Data Tables" date: 2020-09-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5040.yml b/_data/take5/GYM-5040.yml index 17590e600..4360264e5 100644 --- a/_data/take5/GYM-5040.yml +++ b/_data/take5/GYM-5040.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5040 +id: GYM-5040 title: "Improving Image Accessibility with Alt Text" date: 2020-09-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5041.yml b/_data/take5/GYM-5041.yml index 1ebf9245a..1028834b4 100644 --- a/_data/take5/GYM-5041.yml +++ b/_data/take5/GYM-5041.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5041 +id: GYM-5041 title: "Writing Effective and Accessible Alt Text" date: 2020-10-06T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5042.yml b/_data/take5/GYM-5042.yml index 77ed9e66d..180dc9777 100644 --- a/_data/take5/GYM-5042.yml +++ b/_data/take5/GYM-5042.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5042 +id: GYM-5042 title: "Understanding the Role of Color in Accessibility" date: 2020-10-13T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5043.yml b/_data/take5/GYM-5043.yml index d9676f7a1..49c63f11f 100644 --- a/_data/take5/GYM-5043.yml +++ b/_data/take5/GYM-5043.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5043 +id: GYM-5043 title: "Improving Accessibility with Color Contrast" date: 2020-10-20T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5044.yml b/_data/take5/GYM-5044.yml index a5db5829f..980342772 100644 --- a/_data/take5/GYM-5044.yml +++ b/_data/take5/GYM-5044.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5044 +id: GYM-5044 title: "Designing Accessible Forms for Everyone" date: 2020-10-27T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5045.yml b/_data/take5/GYM-5045.yml index abc61232d..2afe1e75e 100644 --- a/_data/take5/GYM-5045.yml +++ b/_data/take5/GYM-5045.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5045 +id: GYM-5045 title: "Improving Form Usability and Accessibility" date: 2020-11-03T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5046.yml b/_data/take5/GYM-5046.yml index fde913c2e..8b0acf720 100644 --- a/_data/take5/GYM-5046.yml +++ b/_data/take5/GYM-5046.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5046 +id: GYM-5046 title: "Creating Accessible Video and Audio Content" date: 2020-11-10T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5047.yml b/_data/take5/GYM-5047.yml index c54fc2255..513b9b4a3 100644 --- a/_data/take5/GYM-5047.yml +++ b/_data/take5/GYM-5047.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5047 +id: GYM-5047 title: "Creating Accessible Web Animations" date: 2020-11-17T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5048.yml b/_data/take5/GYM-5048.yml index 9996c2f55..62b433fd4 100644 --- a/_data/take5/GYM-5048.yml +++ b/_data/take5/GYM-5048.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5048 +id: GYM-5048 title: "Using Motion and Web Animation Responsibly" date: 2020-11-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5049.yml b/_data/take5/GYM-5049.yml index fbd43781a..941a9d998 100644 --- a/_data/take5/GYM-5049.yml +++ b/_data/take5/GYM-5049.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5049 +id: GYM-5049 title: "Creating Variants in Figma" date: 2021-06-01T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5050.yml b/_data/take5/GYM-5050.yml index 8ff8b9b8c..f73ab5d34 100644 --- a/_data/take5/GYM-5050.yml +++ b/_data/take5/GYM-5050.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5050 +id: GYM-5050 title: "Working with Auto Layout in Figma" date: 2021-06-15T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5051.yml b/_data/take5/GYM-5051.yml index 45aa47307..f9221a305 100644 --- a/_data/take5/GYM-5051.yml +++ b/_data/take5/GYM-5051.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5051 +id: GYM-5051 title: "Advanced Auto Layout in Figma" date: 2021-06-29T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5052.yml b/_data/take5/GYM-5052.yml index adb53cb69..2287f57e1 100644 --- a/_data/take5/GYM-5052.yml +++ b/_data/take5/GYM-5052.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5052 +id: GYM-5052 title: "Making a Great First Impression with Your Portfolio" date: 2022-08-22T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5053.yml b/_data/take5/GYM-5053.yml index 40e216ceb..d1556383f 100644 --- a/_data/take5/GYM-5053.yml +++ b/_data/take5/GYM-5053.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5053 +id: GYM-5053 title: "Crafting a Concise About Page" date: 2022-08-24T00:00:00-04:00 course_type: take5 diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index ac50168a8..8b03ef742 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-5056 +id: GYM-5056 title: "Taking Your Portfolio Case Studies to the Next Level" date: 2022-12-05T00:00:00-04:00 course_type: take5 diff --git a/_data/webinars/web0001-designing-for-understanding.yml b/_data/webinars/web0001-designing-for-understanding.yml index d4493edfb..ba0d41cb9 100644 --- a/_data/webinars/web0001-designing-for-understanding.yml +++ b/_data/webinars/web0001-designing-for-understanding.yml @@ -1,5 +1,5 @@ --- -event_id: web0001-designing-for-understanding +id: web0001-designing-for-understanding title: "Designing for Understanding: Create Meaningful Interactions for Web and Mobile" event_guests: "with Stephanie Hay and John Hodgins" description: "A conversation about how content, UX, and design work together to create meaningful interactions with special guests Stephanie Hay and John Hodgins." diff --git a/_data/webinars/web0002-designing-for-real-people.yml b/_data/webinars/web0002-designing-for-real-people.yml index c8885e78c..eebdabc27 100644 --- a/_data/webinars/web0002-designing-for-real-people.yml +++ b/_data/webinars/web0002-designing-for-real-people.yml @@ -1,5 +1,5 @@ --- -event_id: web0002-designing-for-real-people +id: web0002-designing-for-real-people title: "Designing for Real People: Making the Case for Meaningful UX" event_guests: "with Eric Meyer and Jim Webb" description: "A conversation about the benefits of user research and making the case to stakeholders on how to get it done right with special guests Eric Meyer and Jim Webb." diff --git a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml index 8a061b7fc..31370a8d1 100644 --- a/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml +++ b/_data/webinars/web0003-right-sizing-your-rapid-prototypes.yml @@ -1,5 +1,5 @@ --- -event_id: web0003-right-sizing-your-rapid-prototypes +id: web0003-right-sizing-your-rapid-prototypes title: "Right-Sizing Your Rapid Prototypes for Web & Mobile" event_guests: "with Erin Young and Tracy Singleton" description: "A conversation about choosing the appropriate fidelity of breadth, depth, and content for rapid prototyping with special guests Erin Young and Tracy Singleton." diff --git a/_data/webinars/web0004-web-design-is-hard.yml b/_data/webinars/web0004-web-design-is-hard.yml index 20d4bbd81..93d707ca0 100644 --- a/_data/webinars/web0004-web-design-is-hard.yml +++ b/_data/webinars/web0004-web-design-is-hard.yml @@ -1,5 +1,5 @@ --- -event_id: web0004-web-design-is-hard +id: web0004-web-design-is-hard title: "Web Design is Hard" event_guests: "with Jeffrey Zeldman and Aaron Gustafson" description: "A conversation about navigating the complex world of web design education with our friends Jeffrey Zeldman and Aaron Gustafson." diff --git a/_data/webinars/web0005-state-of-responsive-web-design.yml b/_data/webinars/web0005-state-of-responsive-web-design.yml index 82ebf1780..3625a5a8f 100644 --- a/_data/webinars/web0005-state-of-responsive-web-design.yml +++ b/_data/webinars/web0005-state-of-responsive-web-design.yml @@ -1,5 +1,5 @@ --- -event_id: web0005-state-of-responsive-web-design +id: web0005-state-of-responsive-web-design title: "The State of Responsive Web Design" event_guests: "with Ethan Marcotte and Karen McGrane" description: "A conversation about the past, present, and future state of responsive web design with special guests Ethan Marcotte and Karen McGrane." diff --git a/_data/webinars/web0006-keeping-up-with-javascript.yml b/_data/webinars/web0006-keeping-up-with-javascript.yml index e47b4b704..af03dd8f6 100644 --- a/_data/webinars/web0006-keeping-up-with-javascript.yml +++ b/_data/webinars/web0006-keeping-up-with-javascript.yml @@ -1,5 +1,5 @@ --- -event_id: web0006-keeping-up-with-javascript +id: web0006-keeping-up-with-javascript title: "Keeping Up with JavaScript is a Full-time Job" event_guests: "with Kevin Chisholm and Keith Peters" description: "A conversation about the ever-changing JavaScript landscape with special guests Kevin Chisholm and Keith Peters." diff --git a/_data/webinars/web0007-design-systems-and-creativity.yml b/_data/webinars/web0007-design-systems-and-creativity.yml index 583f1fecd..3b53e7418 100644 --- a/_data/webinars/web0007-design-systems-and-creativity.yml +++ b/_data/webinars/web0007-design-systems-and-creativity.yml @@ -1,5 +1,5 @@ --- -event_id: web0007-design-systems-and-creativity +id: web0007-design-systems-and-creativity title: "Design Systems and Creativity: Unlikely Allies" event_guests: "with Brad Frost and Sophie Shepherd" description: "A conversation about creativity and design systems with special guests Brad Frost and Sophie Shepherd." diff --git a/_data/webinars/web0008-rethinking-full-stack.yml b/_data/webinars/web0008-rethinking-full-stack.yml index 7cf1c358e..0deadaa7f 100644 --- a/_data/webinars/web0008-rethinking-full-stack.yml +++ b/_data/webinars/web0008-rethinking-full-stack.yml @@ -1,5 +1,5 @@ --- -event_id: web0008-rethinking-full-stack +id: web0008-rethinking-full-stack title: "Rethinking Full Stack:
        Cost and Compromise" event_guests: "with Eric Meyer and Dan Mall" description: "A conversation about the difference between front end and full stack developers with special guests Eric Meyer and Dan Mall." diff --git a/_data/webinars/web0009-future-of-web-layout.yml b/_data/webinars/web0009-future-of-web-layout.yml index 4705ee2d2..ba2e96efc 100644 --- a/_data/webinars/web0009-future-of-web-layout.yml +++ b/_data/webinars/web0009-future-of-web-layout.yml @@ -1,5 +1,5 @@ --- -event_id: web0009-future-of-web-layout +id: web0009-future-of-web-layout title: "The Future of Web Layout" event_guests: "with Rachel Andrew and Jason Pamental" description: "A webinar discussing new advances in web layout techniques that will impact web designers and developers in the near future." diff --git a/_data/webinars/web0010-planning-before-pixels.yml b/_data/webinars/web0010-planning-before-pixels.yml index dbd878b99..106ea2772 100644 --- a/_data/webinars/web0010-planning-before-pixels.yml +++ b/_data/webinars/web0010-planning-before-pixels.yml @@ -1,5 +1,5 @@ --- -event_id: web0010-planning-before-pixels +id: web0010-planning-before-pixels title: "Planning Before Pixels: Create with Purpose" event_guests: "with Jen Kramer and Heather O'Neill" description: "Learn how (and why) to take the guesswork out of designing from the authors of Before You Code, Jen Kramer and Heather O'Neill, plus Jeremy Osborn." diff --git a/_data/webinars/web0011-prototyping-as-process.yml b/_data/webinars/web0011-prototyping-as-process.yml index 3c90fe29a..f18314a48 100644 --- a/_data/webinars/web0011-prototyping-as-process.yml +++ b/_data/webinars/web0011-prototyping-as-process.yml @@ -1,5 +1,5 @@ --- -event_id: web0011-prototyping-as-process +id: web0011-prototyping-as-process title: "UX Design: Prototyping as Process" event_guests: "with Dave Rupert and James Young" description: "Over the years, prototyping has become an integral part of digital product development. Learn the ins and outs of modern design documentation and the new tools that aim to improve it from three industry experts." diff --git a/_data/webinars/web0012-remote-work.yml b/_data/webinars/web0012-remote-work.yml index 2c1d74f51..098b6e782 100644 --- a/_data/webinars/web0012-remote-work.yml +++ b/_data/webinars/web0012-remote-work.yml @@ -1,5 +1,5 @@ --- -event_id: web0012-remote-work +id: web0012-remote-work title: "Remote Work: Can It Work for You?" event_guests: "with Richard Banfield and Darren Buckner" description: "Join us for an hour-long webinar about the benefits and challenges of remote work — from communication and collaboration to time zones and transparency." diff --git a/_data/webinars/web0013-decade-of-responsive-web-design.yml b/_data/webinars/web0013-decade-of-responsive-web-design.yml index a8a3b2e5c..074a2d9eb 100644 --- a/_data/webinars/web0013-decade-of-responsive-web-design.yml +++ b/_data/webinars/web0013-decade-of-responsive-web-design.yml @@ -1,5 +1,5 @@ --- -event_id: web0013-decade-of-responsive-web-design +id: web0013-decade-of-responsive-web-design title: "A Decade of Responsive Web Design" event_guests: "with Ethan Marcotte" description: "Join us for a webinar with Ethan Marcotte as we celebrate the past decade of his groundbreaking work. We’ll be discussing inclusivity, accessibility, and all things responsive web design." diff --git a/_data/workshops/GYM-700.yml b/_data/workshops/GYM-700.yml index 5082e54c5..658463b88 100644 --- a/_data/workshops/GYM-700.yml +++ b/_data/workshops/GYM-700.yml @@ -1,5 +1,5 @@ --- -course_id: GYM-007 +id: GYM-007 title: "Improving Your Portfolio" date: 2022-12-05T00:00:00-04:00 datetime: "December 5–9, Monday–Friday, 4–5 PM EST" diff --git a/_includes/heros/hero-take5-featured.html b/_includes/heros/hero-take5-featured.html index 921a4cda2..daaf0b5b9 100644 --- a/_includes/heros/hero-take5-featured.html +++ b/_includes/heros/hero-take5-featured.html @@ -4,7 +4,7 @@ {%- for take5_hash in catalog -%} {%- assign item = take5_hash[1] -%} {%- if item.featured == true -%} - {%- assign hero_id = item.course_id | downcase -%} + {%- assign hero_id = item.id | downcase -%} {%- assign hero_topic = item.topic -%} {%- assign hero_title = item.title -%} {%- assign hero_instructor = item.instructor | prepend: "with " -%} diff --git a/_includes/home/featured-courses.html b/_includes/home/featured-courses.html index e893e0274..614320823 100644 --- a/_includes/home/featured-courses.html +++ b/_includes/home/featured-courses.html @@ -8,8 +8,8 @@
    • diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index 11a08de31..f7f10d2cf 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -32,7 +32,7 @@ {%- assign publish_order = publish_order | uniq | join: ', ' | split: ', ' -%} {%- for item in publish_order -%} - {%- if site.data.courses[item].live == true and site.data.courses[item].course_type == "workshop" -%} + {%- if site.data.courses[item].live == true and site.data.courses[item].type == "workshop" -%} {%- assign recent = recent | push: site.data.courses[item].id -%} {%- endif -%} {%- endfor -%} diff --git a/docs/README.md b/docs/README.md index 736df7c2b..4783da6c4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -25,7 +25,7 @@ This YAML file defines the key paramters for a Take 5. id: GYM-5001 # Unique course ID title: "Making a CSS Parallax Effect" # MUST be quoted date: 2019-10-28T00:00:00-04:00 # Publish date — MUST be in this format -course_type: take5 # This is required +type: take5 # This is required url: /courses/take5/GYM-5001/ # Only change the course ID! img: /img/take5/posters/gym-5001.jpg # Path to poster image (may be deprecated) live: true # Only set to live when ready to publish! @@ -60,7 +60,7 @@ related_content: id: GYM-5000 title: date: 2019-11-15T00:00:00-04:00 -course_type: take5 +type: take5 url: /courses/take5/GYM-5000/ img: /img/take5/posters/gym-5000.jpg live: false diff --git a/sitemap.xml b/sitemap.xml index 4425b52da..d9d90171c 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -61,7 +61,7 @@ permalink: sitemap.xml {%- assign url = item.url | prepend: "https://thegymnasium.com" -%} - {%- if item.course_type == "take5" -%} + {%- if item.type == "take5" -%} {%- assign slug = item.title | downcase | slugify -%} {%- assign url = slug | prepend: "/courses/take5/" | prepend: "https://thegymnasium.com" -%} {%- endif -%} From cbfc65d4fe01dddea36e5dcbe78ea999a3b3395e Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 23 May 2023 12:32:09 -0400 Subject: [PATCH 41/67] lowercase & liquid extensions --- _data/pages/courses.yml | 32 +++++++++---------- _includes/courses/featured/full-courses.html | 6 ++-- _includes/courses/featured/gym-shorts.html | 6 ++-- _includes/heros/hero-take5-featured.html | 2 +- _includes/take5/recommended-content.html | 2 +- feeds/_partials/{bios.html => bios.liquid} | 0 feeds/_partials/courses.html | 10 ------ feeds/_partials/courses.liquid | 6 ++++ feeds/_partials/{pages.html => pages.liquid} | 0 .../{tutorials.html => tutorials.liquid} | 0 .../{webinars.html => webinars.liquid} | 3 -- feeds/bios.json | 2 +- feeds/complete.json | 8 ++--- feeds/courses.json | 2 +- feeds/tutorials.json | 2 +- 15 files changed, 37 insertions(+), 44 deletions(-) rename feeds/_partials/{bios.html => bios.liquid} (100%) delete mode 100644 feeds/_partials/courses.html create mode 100644 feeds/_partials/courses.liquid rename feeds/_partials/{pages.html => pages.liquid} (100%) rename feeds/_partials/{tutorials.html => tutorials.liquid} (100%) rename feeds/_partials/{webinars.html => webinars.liquid} (74%) diff --git a/_data/pages/courses.yml b/_data/pages/courses.yml index c4a3604e8..a3a4503de 100644 --- a/_data/pages/courses.yml +++ b/_data/pages/courses.yml @@ -9,27 +9,27 @@ full_courses: format: "Full Courses" short_description: "Full Courses include a series of video lessons, optional quizzes and assignments, and a final exam and certificate if you pass. Plus, a forum to share work and get feedback from students and teaching assistants." hero_text: "Learn new skills in a day or less and earn a certificate." - hero_CTA: "View All Full Courses" + hero_cta: "View All Full Courses" promo_label: "Featured" promo_ID: "GYM-107" gym_shorts: format: "Gym Shorts" short_description: "Gym Shorts include a series of video lessons, a final exam, and a badge if you pass." hero_text: "Learn new skills in a few hours and earn a badge." - hero_CTA: "View All Gym Shorts" + hero_cta: "View All Gym Shorts" promo_label: "Featured" promo_ID: "GYM-017" take5_tutorials: format: "Take 5" short_description: "Take 5 tutorials are 5-minute video tutorials with easy-to-follow transcripts. No homework. No exam. Just free online learning." hero_text: "Learn new skills with 5-minute tutorials." - hero_CTA: "View All Tutorials" + hero_cta: "View All Tutorials" promo_label: "Featured" promo_ID: "GYM-5054" collections: format: "Collections" hero_text: "Explore specific topics with free courses, tutorials, resources, and jobs." - hero_CTA: "View All Collections" + hero_cta: "View All Collections" promo_label: "Featured" promo_ID: "design-systems" @@ -38,29 +38,29 @@ featured: full_courses: promo_1: label: "Most Popular This Week" - ID: "GYM-107" - CTA: "Learn More" + id: "GYM-107" + cta: "Learn More" promo_2: label: "JavaScript for Beginners" - ID: "GYM-104" - CTA: "Learn More" + id: "GYM-104" + cta: "Learn More" promo_3: label: "User Experience 101" - ID: "GYM-103" - CTA: "Learn More" + id: "GYM-103" + cta: "Learn More" gym_shorts: promo_1: label: "Most Popular This Week" - ID: "GYM-018" - CTA: "Learn More" + id: "GYM-018" + cta: "Learn More" promo_2: label: "Accessibility Skills" - ID: "GYM-016" - CTA: "Learn More" + id: "GYM-016" + cta: "Learn More" promo_3: label: "Benefits of Prototyping" - ID: "GYM-015" - CTA: "Learn More" + id: "GYM-015" + cta: "Learn More" about: summary: "Learn About Our Courses" diff --git a/_includes/courses/featured/full-courses.html b/_includes/courses/featured/full-courses.html index 0f266bfa3..b76497cb1 100644 --- a/_includes/courses/featured/full-courses.html +++ b/_includes/courses/featured/full-courses.html @@ -27,7 +27,7 @@

      {{ courses[featured.full_courses.promo_1.ID].description }}

    • @@ -61,7 +61,7 @@

      {{ courses[featured.full_courses.promo_2.ID].description }}

    • @@ -95,7 +95,7 @@

      {{ courses[featured.full_courses.promo_3.ID].description }}

    • diff --git a/_includes/courses/featured/gym-shorts.html b/_includes/courses/featured/gym-shorts.html index 3838f7f4d..1e23801ed 100644 --- a/_includes/courses/featured/gym-shorts.html +++ b/_includes/courses/featured/gym-shorts.html @@ -27,7 +27,7 @@

      {{ courses[featured.gym_shorts.promo_1.ID].description }}

    • @@ -61,7 +61,7 @@

      {{ courses[featured.gym_shorts.promo_2.ID].description }}

      @@ -95,7 +95,7 @@

      {{ courses[featured.gym_shorts.promo_3.ID].description }}

      diff --git a/_includes/heros/hero-take5-featured.html b/_includes/heros/hero-take5-featured.html index ccb2d66a6..49b859a5b 100644 --- a/_includes/heros/hero-take5-featured.html +++ b/_includes/heros/hero-take5-featured.html @@ -40,7 +40,7 @@ {%- assign hero_art = hero_art -%} {%- else -%} - {%- assign hero_art = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" -%} + {%- assign hero_art = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAIctaEAOw==" -%} {%- endif -%} diff --git a/_includes/take5/recommended-content.html b/_includes/take5/recommended-content.html index fc16bee65..ba33de0c9 100644 --- a/_includes/take5/recommended-content.html +++ b/_includes/take5/recommended-content.html @@ -202,7 +202,7 @@

    - +
    diff --git a/feeds/_partials/bios.html b/feeds/_partials/bios.liquid similarity index 100% rename from feeds/_partials/bios.html rename to feeds/_partials/bios.liquid diff --git a/feeds/_partials/courses.html b/feeds/_partials/courses.html deleted file mode 100644 index 481e74b30..000000000 --- a/feeds/_partials/courses.html +++ /dev/null @@ -1,10 +0,0 @@ -{%- assign list = site.data.courses | sort -%} -{%- for hash in list -%} - {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'id', 'id' -%} - {%- assign data = data | replace: 'course_type', 'type' -%} - {%- assign data = data | replace: 'img', 'img' -%} - {{data}} - {% unless forloop.last %},{% endunless %} -{%- endfor -%} diff --git a/feeds/_partials/courses.liquid b/feeds/_partials/courses.liquid new file mode 100644 index 000000000..e5b167d3c --- /dev/null +++ b/feeds/_partials/courses.liquid @@ -0,0 +1,6 @@ +{%- assign list = site.data.courses | sort -%} +{%- for hash in list -%} + {%- assign data = hash[1] | jsonify -%} + {{data}} + {% unless forloop.last %},{% endunless %} +{%- endfor -%} diff --git a/feeds/_partials/pages.html b/feeds/_partials/pages.liquid similarity index 100% rename from feeds/_partials/pages.html rename to feeds/_partials/pages.liquid diff --git a/feeds/_partials/tutorials.html b/feeds/_partials/tutorials.liquid similarity index 100% rename from feeds/_partials/tutorials.html rename to feeds/_partials/tutorials.liquid diff --git a/feeds/_partials/webinars.html b/feeds/_partials/webinars.liquid similarity index 74% rename from feeds/_partials/webinars.html rename to feeds/_partials/webinars.liquid index 71415b320..cdb2f91f1 100644 --- a/feeds/_partials/webinars.html +++ b/feeds/_partials/webinars.liquid @@ -1,11 +1,8 @@ {%- assign list = site.data.webinars | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} - {%- assign data = data | replace: 'title', 'title' -%} - {%- assign data = data | replace: 'id', 'id' -%} {%- assign data = data | replace: 'content_category', 'category' -%} {%- assign data = data | replace: 'video_id', 'video_id' -%} {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} diff --git a/feeds/bios.json b/feeds/bios.json index a8e6c9fbc..d0e93d073 100644 --- a/feeds/bios.json +++ b/feeds/bios.json @@ -8,5 +8,5 @@ permalink: /feeds/bios.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/bios.html -%} + {%-include_relative _partials/bios.liquid -%} ]} diff --git a/feeds/complete.json b/feeds/complete.json index ad9c951a2..e98300778 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -9,16 +9,16 @@ permalink: /feeds/complete.json "environment": "{{ jekyll.environment }}", "items": { "bios":[ - {%-include_relative _partials/bios.html -%} + {%-include_relative _partials/bios.liquid -%} ], "courses":[ - {%-include_relative _partials/courses.html -%} + {%-include_relative _partials/courses.liquid -%} ], "tutorials":[ - {%-include_relative _partials/tutorials.html -%} + {%-include_relative _partials/tutorials.liquid -%} ], "webinars":[ - {%-include_relative _partials/webinars.html -%} + {%-include_relative _partials/webinars.liquid -%} ] } } diff --git a/feeds/courses.json b/feeds/courses.json index 4a4864997..d12b66035 100644 --- a/feeds/courses.json +++ b/feeds/courses.json @@ -8,5 +8,5 @@ permalink: /feeds/courses.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/courses.html -%} + {%-include_relative _partials/courses.liquid -%} ]} diff --git a/feeds/tutorials.json b/feeds/tutorials.json index eb74c3c67..1bdf63a7f 100644 --- a/feeds/tutorials.json +++ b/feeds/tutorials.json @@ -8,5 +8,5 @@ permalink: /feeds/tutorials.json "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", "items": [ - {%-include_relative _partials/tutorials.html -%} + {%-include_relative _partials/tutorials.liquid -%} ]} From cbf3690ee9296eadafc441245bdb6a3dc0206daf Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 24 May 2023 10:18:27 -0400 Subject: [PATCH 42/67] use lowercase id --- _includes/courses/featured/full-courses.html | 42 ++++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/_includes/courses/featured/full-courses.html b/_includes/courses/featured/full-courses.html index b76497cb1..80328f901 100644 --- a/_includes/courses/featured/full-courses.html +++ b/_includes/courses/featured/full-courses.html @@ -7,8 +7,8 @@

    {{ featured.full_courses.promo_1.label }}

    @@ -16,17 +16,17 @@

    {{ featured.full_courses.promo_1.label }}

    - {{ courses[featured.full_courses.promo_1.ID].topic }} + {{ courses[featured.full_courses.promo_1.id].topic }}

    - - {{ courses[featured.full_courses.promo_1.ID].title }} + + {{ courses[featured.full_courses.promo_1.id].title }}

    -

    {{ courses[featured.full_courses.promo_1.ID].description }}

    +

    {{ courses[featured.full_courses.promo_1.id].description }}

    @@ -41,8 +41,8 @@

    {{ featured.full_courses.promo_2.label }}

    @@ -50,17 +50,17 @@

    {{ featured.full_courses.promo_2.label }}

    - {{ courses[featured.full_courses.promo_2.ID].topic }} + {{ courses[featured.full_courses.promo_2.id].topic }}

    - - {{ courses[featured.full_courses.promo_2.ID].title }} + + {{ courses[featured.full_courses.promo_2.id].title }}

    -

    {{ courses[featured.full_courses.promo_2.ID].description }}

    +

    {{ courses[featured.full_courses.promo_2.id].description }}

    @@ -75,8 +75,8 @@

    {{ featured.full_courses.promo_3.label }}

    @@ -84,17 +84,17 @@

    {{ featured.full_courses.promo_3.label }}

    - {{ courses[featured.full_courses.promo_3.ID].topic }} + {{ courses[featured.full_courses.promo_3.id].topic }}

    - - {{ courses[featured.full_courses.promo_3.ID].title }} + + {{ courses[featured.full_courses.promo_3.id].title }}

    -

    {{ courses[featured.full_courses.promo_3.ID].description }}

    +

    {{ courses[featured.full_courses.promo_3.id].description }}

    From d1d6ae54901eacd74f0dc67c519a18704f61be98 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 25 May 2023 13:05:19 -0400 Subject: [PATCH 43/67] Progress commit --- _data/config.yml | 37 ++++++++++++++++++++++++++++++++ _data_config.yml | 1 + _local_config.yml | 1 + feeds/_partials/config.liquid | 12 +++++++++++ feeds/_partials/pages.liquid | 4 ++++ feeds/_partials/tutorials.liquid | 4 ---- feeds/_partials/webinars.liquid | 2 -- feeds/complete.json | 8 ++++++- feeds/generated-pages.json | 2 +- feeds/pages.json | 8 +++---- 10 files changed, 67 insertions(+), 12 deletions(-) create mode 100644 _data/config.yml create mode 100644 feeds/_partials/config.liquid diff --git a/_data/config.yml b/_data/config.yml new file mode 100644 index 000000000..7d7e6871d --- /dev/null +++ b/_data/config.yml @@ -0,0 +1,37 @@ +meta: + title: Aquent Gymnasium + subtitle: + author: Gymnasium + description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. +navigation: + - title: About + url: /about/ + - title: Courses + url: /courses/ + - title: Tutorials + url: /tutorials/ + - title: Webinars + url: /webinars/ + - title: Instructors + url: /instructors/ + - title: Blog + url: /blog/ +feeds: + - blog: https://medium.com/feed/gymnasium +social: + - title: Twitter + url: https://twitter.com/AquentGymnasium + - title: Facebook + url: https://www.facebook.com/aquentgymnasium/ + - title: Instagram + url: https://www.instagram.com/aquent_gymnasium/ + - title: YouTube + url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + - title: LinkedIn + url: https://www.linkedin.com/school/gymnasium/ + - title: Medium + url: https://medium.com/gymnasium + - title: Github + url: https://github.com/gymnasium + - title: TikTok + url: https://tiktok.com/@aquentgymnasium diff --git a/_data_config.yml b/_data_config.yml index d8669484b..845d8a1b2 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Data Feeds url: https://data--thegymcms.netlify.app #https://data.thegymcms.com +lms_url: https://learn.gym.soy gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York diff --git a/_local_config.yml b/_local_config.yml index ea263158b..34369cb41 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Static Content url: http://localhost:4000 +lms_url: https://learn.gym.soy gymurl: https://courses.gymna.si aqassetsurl: https://stag-assets.aquent.com timezone: America/New_York diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid new file mode 100644 index 000000000..3f82eed1f --- /dev/null +++ b/feeds/_partials/config.liquid @@ -0,0 +1,12 @@ +{%- assign data = site.data.config -%} +{%- comment -%} +{{data | jsonify}}, +{%- endcomment -%} +{%- for hash in data -%} + { + "{{ hash[0] }}": {{ hash[1] | jsonify }} + } + {% unless forloop.last %},{% endunless %} +{%- endfor -%} +,{"cms_url": "{{ site.url }}"}, +{"lms_url": "{{ site.lms_url }}"} diff --git a/feeds/_partials/pages.liquid b/feeds/_partials/pages.liquid index e69de29bb..759a88e5f 100644 --- a/feeds/_partials/pages.liquid +++ b/feeds/_partials/pages.liquid @@ -0,0 +1,4 @@ +{%- assign list = site.data.pages -%} +{%- assign counter = list | size -%} +{%- assign data = list | jsonify -%} +{{data}} diff --git a/feeds/_partials/tutorials.liquid b/feeds/_partials/tutorials.liquid index aaef511cf..920da6875 100644 --- a/feeds/_partials/tutorials.liquid +++ b/feeds/_partials/tutorials.liquid @@ -1,11 +1,7 @@ {%- assign list = site.data.take5 | sort -%} {%- for hash in list -%} {%- assign data = hash[1] | jsonify -%} - {%- assign data = data | replace: 'description', 'description' -%} - {%- assign data = data | replace: 'id', 'id' -%} {%- assign data = data | replace: 'course_type', 'type' -%} - {%- assign data = data | replace: 'img', 'img' -%} - {%- assign data = data | replace: 'video_id', 'video_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/_partials/webinars.liquid b/feeds/_partials/webinars.liquid index cdb2f91f1..bc9f24f85 100644 --- a/feeds/_partials/webinars.liquid +++ b/feeds/_partials/webinars.liquid @@ -4,8 +4,6 @@ {%- assign data = data | replace: 'event_date', 'date' -%} {%- assign data = data | replace: 'event_guests', 'subtitle' -%} {%- assign data = data | replace: 'content_category', 'category' -%} - {%- assign data = data | replace: 'video_id', 'video_id' -%} - {%- assign data = data | replace: 'webinar_id', 'webinar_id' -%} {{data}} {% unless forloop.last %},{% endunless %} {%- endfor -%} diff --git a/feeds/complete.json b/feeds/complete.json index e98300778..271bf89ac 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -6,14 +6,20 @@ permalink: /feeds/complete.json "title": "Gymnasium Complete Data Feed", "feed_url": "{{site.url}}/feeds/complete.json", "date_modified": "{{ site.time }}", - "environment": "{{ jekyll.environment }}", + "environment": "{{ site.environment }}", "items": { + "config":[ + {%-include_relative _partials/config.liquid -%} + ], "bios":[ {%-include_relative _partials/bios.liquid -%} ], "courses":[ {%-include_relative _partials/courses.liquid -%} ], + "pages": [ + {%-include_relative _partials/pages.liquid -%} + ], "tutorials":[ {%-include_relative _partials/tutorials.liquid -%} ], diff --git a/feeds/generated-pages.json b/feeds/generated-pages.json index 79a493c4d..53225dd58 100644 --- a/feeds/generated-pages.json +++ b/feeds/generated-pages.json @@ -16,7 +16,7 @@ permalink: /feeds/generated-pages.json {%- assign counter = list | size -%} {%- assign list = list | jsonify -%} { - "title": "Gymnasium GeneratedPages Feed", + "title": "Gymnasium Generated Pages Feed", "feed_url": "{{site.url}}/feeds/generated-pages.json", "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", diff --git a/feeds/pages.json b/feeds/pages.json index e76fdd723..430b1d47b 100644 --- a/feeds/pages.json +++ b/feeds/pages.json @@ -2,13 +2,13 @@ layout: null permalink: /feeds/pages.json --- -{%- assign list = site.data.pages -%} -{%- assign counter = list | size -%} -{%- assign list = list | jsonify -%} + { "title": "Gymnasium Pages Feed", "feed_url": "{{site.url}}/feeds/pages.json", "date_modified": "{{ site.time }}", "environment": "{{ jekyll.environment }}", - "items": {{list}} + "items": [ + {%-include_relative _partials/pages.liquid -%} + ] } From d74f85b1e7eb3ab776f7b36727d46a14ca863770 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 26 May 2023 11:53:05 -0400 Subject: [PATCH 44/67] add navigation links --- _data/config.yml | 130 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 101 insertions(+), 29 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index 7d7e6871d..c2baae752 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -3,35 +3,107 @@ meta: subtitle: author: Gymnasium description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. + og_img: /img/brand/og/gym-brand-og.png + twitter_handle: "@AquentGymnasium" navigation: - - title: About - url: /about/ - - title: Courses - url: /courses/ - - title: Tutorials - url: /tutorials/ - - title: Webinars - url: /webinars/ - - title: Instructors - url: /instructors/ - - title: Blog - url: /blog/ + main: + - title: About + url: /about/ + - title: Courses + url: /courses/ + - title: Tutorials + url: /tutorials/ + - title: Webinars + url: /webinars/ + - title: Instructors + url: /instructors/ + - title: Blog + url: /blog/ + footer: + What We Do: + - title: Courses + url: /courses/ + - title: Tutorials + url: /courses/take5/ + - title: Jobs + url: /jobs/ + - title: Webinars + url: /webinars/ + - title: Articles + url: https://medium.com/gymnasium + target: _blank + rel: noopener + - title: About + url: /about/ + Content Collections: + - title: Design Systems + url: /design-systems/ + - title: Web Development + url: /web-development/ + - title: UX Design + url: /ux-design/ + - title: Prototyping + url: /prototyping/ + - title: Accessibility + url: /accessibility/ + - title: Remote Work + url: /remote-work/ + Resources: + - title: FAQ + url: /faq/ + - title: Support + url: /support/ + - title: Social Impact + url: /social-impact/ + - title: Privacy Policy + url: /privacy-policy/ + - title: Corporate Social Responsibility + url: https://aquent.com/csr-policy + target: _blank + rel: noopener + - title: Impressum + url: https://aquent.de/impressum + target: _blank + rel: noopener + Social: + - title: Twitter + url: https://twitter.com/AquentGymnasium + - title: Facebook + url: https://www.facebook.com/aquentgymnasium/ + - title: Instagram + url: https://www.instagram.com/aquent_gymnasium/ + - title: YouTube + url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + - title: LinkedIn + url: https://www.linkedin.com/school/gymnasium/ + - title: Medium + url: https://medium.com/gymnasium + - title: Github + url: https://github.com/gymnasium + - title: TikTok + url: https://tiktok.com/@aquentgymnasium + Affiliated Sites: + - title: Aquent + url: https://aquent.com + target: _blank + rel: noopener + - title: Aquent Talent + url: https://aquenttalent.com + target: _blank + rel: noopener + - title: Aquent Studios + url: https://aquentstudios.com + target: _blank + rel: noopener + - title: Aquent RoboHead + url: https://www.robohead.net + target: _blank + rel: noopener + - title: Aquent Scout + url: https://aquentscout.com + target: _blank + rel: noopener + feeds: - blog: https://medium.com/feed/gymnasium -social: - - title: Twitter - url: https://twitter.com/AquentGymnasium - - title: Facebook - url: https://www.facebook.com/aquentgymnasium/ - - title: Instagram - url: https://www.instagram.com/aquent_gymnasium/ - - title: YouTube - url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw - - title: LinkedIn - url: https://www.linkedin.com/school/gymnasium/ - - title: Medium - url: https://medium.com/gymnasium - - title: Github - url: https://github.com/gymnasium - - title: TikTok - url: https://tiktok.com/@aquentgymnasium + From 05ee32c47834c71a8b32867bb75cd16f18a7ca9f Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Fri, 26 May 2023 11:53:30 -0400 Subject: [PATCH 45/67] add additional urls per environment --- _data_config.yml | 2 ++ _local_config.yml | 2 ++ feeds/_partials/config.liquid | 7 ++++--- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/_data_config.yml b/_data_config.yml index 845d8a1b2..4cb261187 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -2,6 +2,8 @@ title: Gymnasium Data Feeds url: https://data--thegymcms.netlify.app #https://data.thegymcms.com lms_url: https://learn.gym.soy +astro_url: https://astro.gym.soy +eleventy_url: https://11ty.gym.soy gymurl: https://thegymnasium.com aqassetsurl: https://assets.aquent.com timezone: America/New_York diff --git a/_local_config.yml b/_local_config.yml index 34369cb41..12dce8f88 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -2,6 +2,8 @@ title: Gymnasium Static Content url: http://localhost:4000 lms_url: https://learn.gym.soy +astro_url: http://localhost:3030 +eleventy_url: http://localhost:4040 gymurl: https://courses.gymna.si aqassetsurl: https://stag-assets.aquent.com timezone: America/New_York diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 3f82eed1f..d68dafbee 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -6,7 +6,8 @@ { "{{ hash[0] }}": {{ hash[1] | jsonify }} } - {% unless forloop.last %},{% endunless %} {%- endfor -%} -,{"cms_url": "{{ site.url }}"}, -{"lms_url": "{{ site.lms_url }}"} +{"cms_url": "{{ site.url }}"}, +{"lms_url": "{{ site.lms_url }}"}, +{"eleventy_url": "{{ site.eleventy_url }}"}, +{"astro_url": "{{ site.astro_url }}"} From c0bbbe87870724bc792371f822f5340d2098d132 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 13:54:33 -0400 Subject: [PATCH 46/67] Improve JSON format --- _data/config.yml | 102 ++++++++++++++++++---------------- feeds/_partials/config.liquid | 22 +++++--- feeds/complete.json | 4 +- 3 files changed, 68 insertions(+), 60 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index c2baae752..dc1b8f790 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -7,103 +7,107 @@ meta: twitter_handle: "@AquentGymnasium" navigation: main: - - title: About - url: /about/ - - title: Courses - url: /courses/ - - title: Tutorials - url: /tutorials/ - - title: Webinars - url: /webinars/ - - title: Instructors - url: /instructors/ - - title: Blog - url: /blog/ + - title: About + href: /about/ + - title: Courses + href: /courses/ + - title: Tutorials + href: /tutorials/ + - title: Webinars + href: /webinars/ + - title: Instructors + href: /instructors/ + - title: Blog + href: /blog/ footer: - What We Do: + - title: What We Do + links: - title: Courses - url: /courses/ + href: /courses/ - title: Tutorials - url: /courses/take5/ + href: /courses/take5/ - title: Jobs - url: /jobs/ + href: /jobs/ - title: Webinars - url: /webinars/ + href: /webinars/ - title: Articles - url: https://medium.com/gymnasium + href: https://medium.com/gymnasium target: _blank rel: noopener - title: About - url: /about/ - Content Collections: + href: /about/ + - title: Content Collections + links: - title: Design Systems - url: /design-systems/ + href: /design-systems/ - title: Web Development - url: /web-development/ + href: /web-development/ - title: UX Design - url: /ux-design/ + href: /ux-design/ - title: Prototyping - url: /prototyping/ + href: /prototyping/ - title: Accessibility - url: /accessibility/ + href: /accessibility/ - title: Remote Work - url: /remote-work/ - Resources: + href: /remote-work/ + - title: Resources + links: - title: FAQ - url: /faq/ + href: /faq/ - title: Support - url: /support/ + href: /support/ - title: Social Impact - url: /social-impact/ + href: /social-impact/ - title: Privacy Policy - url: /privacy-policy/ + href: /privacy-policy/ - title: Corporate Social Responsibility - url: https://aquent.com/csr-policy + href: https://aquent.com/csr-policy target: _blank rel: noopener - title: Impressum - url: https://aquent.de/impressum + href: https://aquent.de/impressum target: _blank rel: noopener - Social: + - title: Social + links: - title: Twitter - url: https://twitter.com/AquentGymnasium + href: https://twitter.com/AquentGymnasium - title: Facebook - url: https://www.facebook.com/aquentgymnasium/ + href: https://www.facebook.com/aquentgymnasium/ - title: Instagram - url: https://www.instagram.com/aquent_gymnasium/ + href: https://www.instagram.com/aquent_gymnasium/ - title: YouTube - url: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw + href: https://www.youtube.com/channel/UCsAAa0dL-ZJpq4gN1zEcXYw - title: LinkedIn - url: https://www.linkedin.com/school/gymnasium/ + href: https://www.linkedin.com/school/gymnasium/ - title: Medium - url: https://medium.com/gymnasium + href: https://medium.com/gymnasium - title: Github - url: https://github.com/gymnasium + href: https://github.com/gymnasium - title: TikTok - url: https://tiktok.com/@aquentgymnasium - Affiliated Sites: + href: https://tiktok.com/@aquentgymnasium + - title: Affiliated Sites + links: - title: Aquent - url: https://aquent.com + href: https://aquent.com target: _blank rel: noopener - title: Aquent Talent - url: https://aquenttalent.com + href: https://aquenttalent.com target: _blank rel: noopener - title: Aquent Studios - url: https://aquentstudios.com + href: https://aquentstudios.com target: _blank rel: noopener - title: Aquent RoboHead - url: https://www.robohead.net + href: https://www.robohead.net target: _blank rel: noopener - title: Aquent Scout - url: https://aquentscout.com + href: https://aquentscout.com target: _blank rel: noopener - feeds: - blog: https://medium.com/feed/gymnasium diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index d68dafbee..47afc5115 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -1,13 +1,17 @@ {%- assign data = site.data.config -%} {%- comment -%} -{{data | jsonify}}, +{{ data | jsonify }}, {%- endcomment -%} -{%- for hash in data -%} - { - "{{ hash[0] }}": {{ hash[1] | jsonify }} - } + +{%- assign list = site.data.config -%} +{%- for hash in list -%} + {%- assign key = hash[0] | jsonify -%} + {%- assign value = hash[1] | jsonify -%} + {{key}}:{{value}}, + {% if forloop.last %} + "cms_url": "{{ site.url }}", + "lms_url": "{{ site.lms_url }}", + "eleventy_url": "{{ site.eleventy_url }}", + "astro_url": "{{ site.astro_url }}" + {% endif %} {%- endfor -%} -{"cms_url": "{{ site.url }}"}, -{"lms_url": "{{ site.lms_url }}"}, -{"eleventy_url": "{{ site.eleventy_url }}"}, -{"astro_url": "{{ site.astro_url }}"} diff --git a/feeds/complete.json b/feeds/complete.json index 271bf89ac..756f2635b 100644 --- a/feeds/complete.json +++ b/feeds/complete.json @@ -8,9 +8,9 @@ permalink: /feeds/complete.json "date_modified": "{{ site.time }}", "environment": "{{ site.environment }}", "items": { - "config":[ + "config": { {%-include_relative _partials/config.liquid -%} - ], + }, "bios":[ {%-include_relative _partials/bios.liquid -%} ], From 741df13c254e77a82ebcf0633abddb64ec6b7f71 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 13:55:18 -0400 Subject: [PATCH 47/67] Update _data_config.yml --- _data_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data_config.yml b/_data_config.yml index 4cb261187..a1e21f42a 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,6 @@ # Setup title: Gymnasium Data Feeds -url: https://data--thegymcms.netlify.app #https://data.thegymcms.com +url: https://data.gym.soy #https://data.thegymcms.com lms_url: https://learn.gym.soy astro_url: https://astro.gym.soy eleventy_url: https://11ty.gym.soy From ef78246193254f2748c6367f0719383f1521fe59 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 1 Jun 2023 15:03:01 -0400 Subject: [PATCH 48/67] Update config.yml --- _data/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index dc1b8f790..651e2fdb9 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -1,7 +1,7 @@ meta: - title: Aquent Gymnasium - subtitle: - author: Gymnasium + title: Gymnasium + subtitle: Free online courses on design and development + author: Aquent Gymnasium description: Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills. og_img: /img/brand/og/gym-brand-og.png twitter_handle: "@AquentGymnasium" From 35ec7d9ab04ae12378719a59f3473d901186549d Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 8 Jun 2023 14:47:45 -0400 Subject: [PATCH 49/67] remove hard-coded url --- feeds/_partials/bios.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/_partials/bios.liquid b/feeds/_partials/bios.liquid index 2b804f870..e2183bbf3 100644 --- a/feeds/_partials/bios.liquid +++ b/feeds/_partials/bios.liquid @@ -4,7 +4,7 @@ "id": "{{bio_hash[0]}}", "title": "{{bio.name}}", "subtitle": "{{bio.subtitle}}", - "img": "{{ site.url }}/img/webinar-bio-headshots/{{bio.headshot}}", + "img": "/img/webinar-bio-headshots/{{bio.headshot}}", "description": "{{bio.description | strip_html}}" } {% unless forloop.last %},{% endunless %} From 8ed193641998c5d474605815866085ce0b47d6bf Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 8 Jun 2023 16:21:21 -0400 Subject: [PATCH 50/67] config: add logos and colors --- _data/config.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/_data/config.yml b/_data/config.yml index 651e2fdb9..55d0a80a0 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -110,4 +110,20 @@ navigation: rel: noopener feeds: - blog: https://medium.com/feed/gymnasium - +logos: + main: + white: + src: /img/brand/png/gymnasium-logo-white-4x.png + srcset: /img/brand/svg/gymnasium-logo-white.svg + black: + src: /img/brand/png/gymnasium-logo-black-lg.png + srcset: /img/brand/svg/gymnasium-logo-black.svg +colors: + orange: "#ff5f14" + blue: "#0077c8" + white: "#fff" + light-gray: "#ccc" + gray: "#a6a6a6" + medium-gray: "#737373" + dark-gray: "#444" + black: "#181818" From 1fdd4fbc05cc8a875cfbc37d1d4eeddd32c90f9f Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 12 Jun 2023 11:57:13 -0500 Subject: [PATCH 51/67] Add dummy variables, ripe for replacement --- _data/config.yml | 12 ++++++++++++ feeds/_partials/config.liquid | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/_data/config.yml b/_data/config.yml index 55d0a80a0..ebe1f2771 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -108,6 +108,18 @@ navigation: href: https://aquentscout.com target: _blank rel: noopener + - title: Dev Links + links: + - title: Gymnasium (Production) + href: https://thegymnasium.com + - title: Gym Astro + href: GYM_ASTRO_URL + - title: Gym Eleventy + href: GYM_ELEVENTY_URL + - title: Gym Soy Data + href: GYM_DATA_URL + - title: Gym LMS + href: GYM_LMS_URL feeds: - blog: https://medium.com/feed/gymnasium logos: diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 47afc5115..8aeb835b6 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -7,6 +7,10 @@ {%- for hash in list -%} {%- assign key = hash[0] | jsonify -%} {%- assign value = hash[1] | jsonify -%} + {%- assign value = value | replace: 'GYM_ASTRO_URL', site.astro_url -%} + {%- assign value = value | replace: 'GYM_ELEVENTY_URL', site.eleventy_url -%} + {%- assign value = value | replace: 'GYM_LMS_URL', site.lms_url -%} + {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, {% if forloop.last %} "cms_url": "{{ site.url }}", From 8e62de9eaacc4bd83d89cb583a8660e5163bbdb6 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Mon, 12 Jun 2023 11:57:50 -0500 Subject: [PATCH 52/67] set all variables as the defaults --- _sass/_variables.scss | 70 +++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/_sass/_variables.scss b/_sass/_variables.scss index 53834c494..0bde33aa9 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -1,45 +1,45 @@ // Colors -$gym-orange: #ff5f14; -// $gym-orange-light: rgba(248, 151, 32, 0.9); -$gym-black: #181818; -$gym-blue: #0077c8; -$gym-white: #fff; -$gym-gray: #ccc; -$gym-gray-2: adjust-color($gym-gray, $lightness: 6.66%); // example: outputs #ddd, might as well hard-code this here -$gym-dark-gray: #444; -$gym-dark-gray-2: #333; -$gym-light-gray: #a6a6a6; -$gym-mid-gray: #737373; // grayscale $gym-blue -$gym-light-page-background: #ebebeb; - -$gym-button-background-hover: $gym-mid-gray; -$gym-button-background-focus: $gym-light-gray; -$gym-button-background-active: $gym-button-background-focus; +$gym-orange: #ff5f14 !default; +// $gym-orange-light: rgba(248, 151, 32, 0.9) !default; +$gym-black: #181818 !default; +$gym-blue: #0077c8 !default; +$gym-white: #fff !default; +$gym-gray: #ccc !default; +$gym-gray-2: adjust-color($gym-gray, $lightness: 6.66%) !default; // example: outputs #ddd, might as well hard-code this here +$gym-dark-gray: #444 !default; +$gym-dark-gray-2: #333 !default; +$gym-light-gray: #a6a6a6 !default; +$gym-mid-gray: #737373 !default; // grayscale $gym-blue +$gym-light-page-background: #ebebeb !default; + +$gym-button-background-hover: $gym-mid-gray !default; +$gym-button-background-focus: $gym-light-gray !default; +$gym-button-background-active: $gym-button-background-focus !default; // Fancy colors -$gym-green: #2c9959; -$gym-green-dark: adjust-color($gym-green, $lightness: -7.7%); // #237b47 -$gym-green-darker: adjust-color($gym-green, $lightness: -19.1%); // #164d2d +$gym-green: #2c9959 !default; +$gym-green-dark: adjust-color($gym-green, $lightness: -7.7%) !default; // #237b47 +$gym-green-darker: adjust-color($gym-green, $lightness: -19.1%) !default; // #164d2d -$gym-magenta: #d73158; -$gym-magenta-dark: adjust-color($gym-magenta, $lightness: -11.5%); // outputs #ac2142 -$gym-magenta-darker: adjust-color($gym-magenta, $lightness: -23%); // outputs #7b182f +$gym-magenta: #d73158 !default; +$gym-magenta-dark: adjust-color($gym-magenta, $lightness: -11.5%) !default; // outputs #ac2142 +$gym-magenta-darker: adjust-color($gym-magenta, $lightness: -23%) !default; // outputs #7b182f -$gym-purple: #764c9f; -$gym-purple-dark: adjust-color($gym-purple, $lightness: -11.5%); -$gym-purple-darker: adjust-color($gym-purple, $lightness: -23%); +$gym-purple: #764c9f !default; +$gym-purple-dark: adjust-color($gym-purple, $lightness: -11.5%) !default; +$gym-purple-darker: adjust-color($gym-purple, $lightness: -23%) !default; -$gym-teal: #5ca5a0; -$gym-teal-dark: adjust-color($gym-teal, $lightness: -11.58%); // outputs #46807c -$gym-teal-darker: adjust-color($gym-teal, $lightness: -26.9%); // #2b4d4b +$gym-teal: #5ca5a0 !default; +$gym-teal-dark: adjust-color($gym-teal, $lightness: -11.58%) !default; // outputs #46807c +$gym-teal-darker: adjust-color($gym-teal, $lightness: -26.9%) !default; // #2b4d4b -$holiday-red: #f30d21; -$holiday-green: #00b600; +$holiday-red: #f30d21 !default; +$holiday-green: #00b600 !default; // Fonts -$gym-text-font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif; -$gym-font-stack: "brandon-grotesque", $gym-text-font-stack; +$gym-text-font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif !default; +$gym-font-stack: "brandon-grotesque", $gym-text-font-stack !default; // A map of (commonly used) breakpoints. // TODO: we have a lot of other breakpoints specified in our CSS - maybe we can work to combine/reduce some of these rules @@ -47,8 +47,8 @@ $breakpoints: ( small: 640px, // 40em medium: 992px, // 62em large: 1200px // 75em -); +) !default; // Migrated from theme -$linked-in-blue: #0077b5; -$error-color: #d9534f; // replace with the magenta color above? +$linked-in-blue: #0077b5 !default; +$error-color: #d9534f !default; // replace with the magenta color above? From 07ca5527bf30510c6b9982608cc0e090e999be35 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 13 Jun 2023 11:16:21 -0500 Subject: [PATCH 53/67] map vs array? --- _data/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/config.yml b/_data/config.yml index ebe1f2771..c04d0b3fa 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -121,7 +121,7 @@ navigation: - title: Gym LMS href: GYM_LMS_URL feeds: - - blog: https://medium.com/feed/gymnasium + blog: https://medium.com/feed/gymnasium logos: main: white: From 1c62e6a3e133525d1a61339ccb4f9c801d876277 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 14 Jun 2023 12:39:11 -0500 Subject: [PATCH 54/67] one way to insert data into SASS --- css/main.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/main.scss b/css/main.scss index acc062377..79fdab0a0 100644 --- a/css/main.scss +++ b/css/main.scss @@ -1,5 +1,10 @@ --- --- +{%- for color in site.data.config.colors -%} +$gym-{{color[0]}}: {{color[1]}}; +@debug "{{color[0]}}: #{$gym-{{color[0]}}}"; +{%- endfor -%} + @import "functions"; @import "mixins"; @import "variables"; From 0280c3c7ceff30a2b6d282dd1278b7ca0cbc120b Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 10 Oct 2023 15:25:31 -0400 Subject: [PATCH 55/67] add openedx logo --- _data/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_data/config.yml b/_data/config.yml index c04d0b3fa..d23c3e835 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -130,6 +130,8 @@ logos: black: src: /img/brand/png/gymnasium-logo-black-lg.png srcset: /img/brand/svg/gymnasium-logo-black.svg + openedx: + src: /img/openedx/edx-logo-bw.png colors: orange: "#ff5f14" blue: "#0077c8" From dbec930158136c9c012de2f3dd7347267fd38ddd Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 13:19:43 -0400 Subject: [PATCH 56/67] add root url --- _data_config.yml | 1 + feeds/_partials/config.liquid | 2 ++ 2 files changed, 3 insertions(+) diff --git a/_data_config.yml b/_data_config.yml index a1e21f42a..df619bbac 100644 --- a/_data_config.yml +++ b/_data_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Data Feeds url: https://data.gym.soy #https://data.thegymcms.com +root_url: https://gym.soy lms_url: https://learn.gym.soy astro_url: https://astro.gym.soy eleventy_url: https://11ty.gym.soy diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 8aeb835b6..7bd3d081c 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -12,6 +12,8 @@ {%- assign value = value | replace: 'GYM_LMS_URL', site.lms_url -%} {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, + {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} + {{key}}:{{value}}, {% if forloop.last %} "cms_url": "{{ site.url }}", "lms_url": "{{ site.lms_url }}", From 43c17db3ad756a5169163fc3659eef0a5790eccd Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 13:35:13 -0400 Subject: [PATCH 57/67] Update config.liquid --- feeds/_partials/config.liquid | 1 + 1 file changed, 1 insertion(+) diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 7bd3d081c..5fde8ef63 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -15,6 +15,7 @@ {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} {{key}}:{{value}}, {% if forloop.last %} + "root_url": "{{ site.root_url }}", "cms_url": "{{ site.url }}", "lms_url": "{{ site.lms_url }}", "eleventy_url": "{{ site.eleventy_url }}", From 850b66722beee13a035a797e6088c24447a11edb Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 17 Oct 2023 19:02:29 -0400 Subject: [PATCH 58/67] update configs --- _local_config.yml | 1 + css/main.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_local_config.yml b/_local_config.yml index 12dce8f88..5ba14433b 100644 --- a/_local_config.yml +++ b/_local_config.yml @@ -1,6 +1,7 @@ # Setup title: Gymnasium Static Content url: http://localhost:4000 +root_url: https://gym.soy lms_url: https://learn.gym.soy astro_url: http://localhost:3030 eleventy_url: http://localhost:4040 diff --git a/css/main.scss b/css/main.scss index 79fdab0a0..1d707dd76 100644 --- a/css/main.scss +++ b/css/main.scss @@ -2,7 +2,7 @@ --- {%- for color in site.data.config.colors -%} $gym-{{color[0]}}: {{color[1]}}; -@debug "{{color[0]}}: #{$gym-{{color[0]}}}"; +/*@debug "{{color[0]}}: #{$gym-{{color[0]}}}";*/ {%- endfor -%} @import "functions"; From e2c7f99b12af6b1eea488d53f7f67509a8238e29 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 18 Oct 2023 11:13:07 -0400 Subject: [PATCH 59/67] absolute URLs for internal footer links --- _data/config.yml | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index d23c3e835..4d8d37d28 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -8,58 +8,58 @@ meta: navigation: main: - title: About - href: /about/ + href: GYM_ROOT_URL/about/ - title: Courses - href: /courses/ + href: GYM_ROOT_URL/courses/ - title: Tutorials - href: /tutorials/ + href: GYM_ROOT_URL/tutorials/ - title: Webinars - href: /webinars/ + href: GYM_ROOT_URL/webinars/ - title: Instructors - href: /instructors/ + href: GYM_ROOT_URL/instructors/ - title: Blog - href: /blog/ + href: GYM_ROOT_URL/blog/ footer: - title: What We Do links: - title: Courses - href: /courses/ + href: GYM_ROOT_URL/courses/ - title: Tutorials - href: /courses/take5/ + href: GYM_ROOT_URL/courses/take5/ - title: Jobs - href: /jobs/ + href: GYM_ROOT_URL/jobs/ - title: Webinars - href: /webinars/ + href: GYM_ROOT_URL/webinars/ - title: Articles href: https://medium.com/gymnasium target: _blank rel: noopener - title: About - href: /about/ + href: GYM_ROOT_URL/about/ - title: Content Collections links: - title: Design Systems - href: /design-systems/ + href: GYM_ROOT_URL/design-systems/ - title: Web Development - href: /web-development/ + href: GYM_ROOT_URL/web-development/ - title: UX Design - href: /ux-design/ + href: GYM_ROOT_URL/ux-design/ - title: Prototyping - href: /prototyping/ + href: GYM_ROOT_URL/prototyping/ - title: Accessibility - href: /accessibility/ + href: GYM_ROOT_URL/accessibility/ - title: Remote Work - href: /remote-work/ + href: GYM_ROOT_URL/remote-work/ - title: Resources links: - title: FAQ - href: /faq/ + href: GYM_ROOT_URL/faq/ - title: Support - href: /support/ + href: GYM_ROOT_URL/support/ - title: Social Impact - href: /social-impact/ + href: GYM_ROOT_URL/social-impact/ - title: Privacy Policy - href: /privacy-policy/ + href: GYM_ROOT_URL/privacy-policy/ - title: Corporate Social Responsibility href: https://aquent.com/csr-policy target: _blank From 0f8683837b7c61de2a7b922c3203a4f0969e3df4 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 18 Oct 2023 12:49:55 -0400 Subject: [PATCH 60/67] Update config.liquid move config variables to top for convenience --- feeds/_partials/config.liquid | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/feeds/_partials/config.liquid b/feeds/_partials/config.liquid index 5fde8ef63..9733606fc 100644 --- a/feeds/_partials/config.liquid +++ b/feeds/_partials/config.liquid @@ -5,6 +5,13 @@ {%- assign list = site.data.config -%} {%- for hash in list -%} + {% if forloop.first %} + "root_url": "{{ site.root_url }}", + "cms_url": "{{ site.url }}", + "lms_url": "{{ site.lms_url }}", + "eleventy_url": "{{ site.eleventy_url }}", + "astro_url": "{{ site.astro_url }}", + {% endif %} {%- assign key = hash[0] | jsonify -%} {%- assign value = hash[1] | jsonify -%} {%- assign value = value | replace: 'GYM_ASTRO_URL', site.astro_url -%} @@ -13,12 +20,6 @@ {%- assign value = value | replace: 'GYM_DATA_URL', site.url -%} {{key}}:{{value}}, {%- assign value = value | replace: 'GYM_ROOT_URL', site.root_url -%} - {{key}}:{{value}}, - {% if forloop.last %} - "root_url": "{{ site.root_url }}", - "cms_url": "{{ site.url }}", - "lms_url": "{{ site.lms_url }}", - "eleventy_url": "{{ site.eleventy_url }}", - "astro_url": "{{ site.astro_url }}" - {% endif %} + {{key}}:{{value}} + {% unless forloop.last %},{% endunless %} {%- endfor -%} From 3e0f776655f60787bf7ec67f1f41b3bce4eb8569 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 19 Oct 2023 09:30:37 -0400 Subject: [PATCH 61/67] Update index.html --- courses/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/courses/index.html b/courses/index.html index d9818bcb8..e2542a59a 100644 --- a/courses/index.html +++ b/courses/index.html @@ -38,7 +38,7 @@

    {{ main.full_courses.format }}

    - {{ main.full_courses.hero_text }} {{ main.full_courses.hero_CTA }} + {{ main.full_courses.hero_text }} {{ main.full_courses.hero_cta }}

    @@ -102,7 +102,7 @@

    {{ main.gym_shorts.format }}

    - {{ main.gym_shorts.hero_text }} {{ main.gym_shorts.hero_CTA }} + {{ main.gym_shorts.hero_text }} {{ main.gym_shorts.hero_cta }}

    @@ -166,7 +166,7 @@

    {{ main.take5_tutorials.format }}

    - {{ main.take5_tutorials.hero_text }} {{ main.take5_tutorials.hero_CTA }} + {{ main.take5_tutorials.hero_text }} {{ main.take5_tutorials.hero_cta }}

    @@ -230,7 +230,7 @@

    {{ main.collections.format }}

    - {{ main.collections.hero_text }} {{ main.collections.hero_CTA }} + {{ main.collections.hero_text }} {{ main.collections.hero_cta }}

    From f14a9d154649564252ff29737388f043178607c5 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 19 Oct 2023 10:40:23 -0400 Subject: [PATCH 62/67] change short_description to description --- _data/hero.yml | 2 +- _data/take5/GYM-5054.yml | 2 +- _data/take5/GYM-5055.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- _data/take5/GYM-5057.yml | 2 +- _includes/heros/live-streams/content.html | 2 +- courses/index.html | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/_data/hero.yml b/_data/hero.yml index 4e6353a5f..8e05128c5 100644 --- a/_data/hero.yml +++ b/_data/hero.yml @@ -14,7 +14,7 @@ embed_source: "youtube" # Content # Update per live stream, if needed title: "Livestream" -short_description: "Testing the Limits of LLMs" +description: "Testing the Limits of LLMs" byline: "with Andrew Miller and Jeremy Osborn" # twitch diff --git a/_data/take5/GYM-5054.yml b/_data/take5/GYM-5054.yml index 61b3df49c..d19f6f5af 100644 --- a/_data/take5/GYM-5054.yml +++ b/_data/take5/GYM-5054.yml @@ -14,7 +14,7 @@ subtopics: video_ID: oaAJzDFXHvc video_duration: "4:17" featured: true -short_description: "Learn how contrast in your typography can improve your content’s structure, readability, and accessibility in this tutorial." +description: "Learn how contrast in your typography can improve your content’s structure, readability, and accessibility in this tutorial." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5055.yml b/_data/take5/GYM-5055.yml index 621388ad1..61dd8504b 100644 --- a/_data/take5/GYM-5055.yml +++ b/_data/take5/GYM-5055.yml @@ -14,7 +14,7 @@ subtopics: video_ID: KrN5qckZ7iA video_duration: "4:14" featured: false -short_description: "Learn how to choose a color palette that strengthens the branding, accessibility, and UX of your design in this tutorial." +description: "Learn how to choose a color palette that strengthens the branding, accessibility, and UX of your design in this tutorial." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index c107bbefe..f7b33b17b 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -14,7 +14,7 @@ subtopics: video_id: er1hK-a7pQA video_duration: "4:52" featured: false -short_description: "In this tutorial, you’ll learn three tips on how to write compelling case studies for your online portfolio." +description: "In this tutorial, you’ll learn three tips on how to write compelling case studies for your online portfolio." project_file_source: project_files: related_content: diff --git a/_data/take5/GYM-5057.yml b/_data/take5/GYM-5057.yml index 5ad03189d..b95a4685a 100644 --- a/_data/take5/GYM-5057.yml +++ b/_data/take5/GYM-5057.yml @@ -14,7 +14,7 @@ subtopics: video_ID: FDlpkWUp8wk video_duration: "4:39" featured: false -short_description: Learn how to use grids, whitespace, and responsive design to make better layouts for your web pages in this tutorial. +description: Learn how to use grids, whitespace, and responsive design to make better layouts for your web pages in this tutorial. project_file_source: project_files: related_content: diff --git a/_includes/heros/live-streams/content.html b/_includes/heros/live-streams/content.html index 97e8dbdfc..18f729548 100644 --- a/_includes/heros/live-streams/content.html +++ b/_includes/heros/live-streams/content.html @@ -5,7 +5,7 @@

    {{ hero.title }}

    -

    {{ hero.short_description }} {{ hero.byline }}

    +

    {{ hero.description }} {{ hero.byline }}

    diff --git a/courses/index.html b/courses/index.html index 717249f74..686187bed 100644 --- a/courses/index.html +++ b/courses/index.html @@ -24,7 +24,7 @@

    {{ main.header.title }}

    {{ main.header.tagline }} - {{ main.header.short_description }} + {{ main.header.description }}

    From 3ab0c2af192034d87bc2d946e2b226834b348382 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 19 Oct 2023 10:50:17 -0400 Subject: [PATCH 63/67] id to lowercase, use id instead of course_id --- _data/hero.yml | 2 +- _data/take5/GYM-5054.yml | 4 +-- _data/take5/GYM-5055.yml | 4 +-- _data/take5/GYM-5057.yml | 4 +-- _includes/courses/featured/gym-shorts.html | 42 +++++++++++----------- courses/take5/GYM-5054/index.md | 2 +- courses/take5/GYM-5054/meta.md | 2 +- courses/take5/GYM-5055/index.md | 2 +- courses/take5/GYM-5055/meta.md | 2 +- courses/take5/GYM-5057/index.md | 2 +- courses/take5/GYM-5057/meta.md | 2 +- 11 files changed, 34 insertions(+), 34 deletions(-) diff --git a/_data/hero.yml b/_data/hero.yml index 8e05128c5..e4e753774 100644 --- a/_data/hero.yml +++ b/_data/hero.yml @@ -21,7 +21,7 @@ byline: "with Andrew Miller and Jeremy Osborn" twitch_channel: "andrewpmiller" # youtube -youtube_video_ID: "S5ySexy58kI" +youtube_video_id: "S5ySexy58kI" # Aspect Ratio 16:19 embed_width: "854" diff --git a/_data/take5/GYM-5054.yml b/_data/take5/GYM-5054.yml index d19f6f5af..b791ad066 100644 --- a/_data/take5/GYM-5054.yml +++ b/_data/take5/GYM-5054.yml @@ -1,5 +1,5 @@ --- -course_ID: GYM-5054 +id: GYM-5054 title: "Getting Contrast Right in Your Typography" date: 2023-07-25T00:00:00-04:00 course_type: take5 @@ -11,7 +11,7 @@ instructor_bio: "Web Designer and Developer at Owltastic" topic: "Design" subtopics: - label: "Accessibility" -video_ID: oaAJzDFXHvc +video_id: oaAJzDFXHvc video_duration: "4:17" featured: true description: "Learn how contrast in your typography can improve your content’s structure, readability, and accessibility in this tutorial." diff --git a/_data/take5/GYM-5055.yml b/_data/take5/GYM-5055.yml index 61dd8504b..05e2f4820 100644 --- a/_data/take5/GYM-5055.yml +++ b/_data/take5/GYM-5055.yml @@ -1,5 +1,5 @@ --- -course_ID: GYM-5055 +id: GYM-5055 title: "Creating an Effective Color Palette in Design" date: 2023-03-16T00:00:00-04:00 course_type: take5 @@ -11,7 +11,7 @@ instructor_bio: "Web Designer and Developer at Owltastic" topic: "Design" subtopics: - label: "Accessibility" -video_ID: KrN5qckZ7iA +video_id: KrN5qckZ7iA video_duration: "4:14" featured: false description: "Learn how to choose a color palette that strengthens the branding, accessibility, and UX of your design in this tutorial." diff --git a/_data/take5/GYM-5057.yml b/_data/take5/GYM-5057.yml index b95a4685a..e7bbf2031 100644 --- a/_data/take5/GYM-5057.yml +++ b/_data/take5/GYM-5057.yml @@ -1,5 +1,5 @@ --- -course_ID: GYM-5057 +id: GYM-5057 title: "Leveling Up Your Layouts in Web Design" date: 2023-07-05T00:00:00-04:00 course_type: take5 @@ -11,7 +11,7 @@ instructor_bio: "Web Designer and Developer at Owltastic" topic: "Design" subtopics: - label: "Accessibility" -video_ID: FDlpkWUp8wk +video_id: FDlpkWUp8wk video_duration: "4:39" featured: false description: Learn how to use grids, whitespace, and responsive design to make better layouts for your web pages in this tutorial. diff --git a/_includes/courses/featured/gym-shorts.html b/_includes/courses/featured/gym-shorts.html index 1e23801ed..44d007ce0 100644 --- a/_includes/courses/featured/gym-shorts.html +++ b/_includes/courses/featured/gym-shorts.html @@ -7,8 +7,8 @@

    {{ featured.gym_shorts.promo_1.label }}

    @@ -16,17 +16,17 @@

    {{ featured.gym_shorts.promo_1.label }}

    - {{ courses[featured.gym_shorts.promo_1.ID].topic }} + {{ courses[featured.gym_shorts.promo_1.id].topic }}

    - - {{ courses[featured.gym_shorts.promo_1.ID].title }} + + {{ courses[featured.gym_shorts.promo_1.id].title }}

    -

    {{ courses[featured.gym_shorts.promo_1.ID].description }}

    +

    {{ courses[featured.gym_shorts.promo_1.id].description }}

    @@ -41,8 +41,8 @@

    {{ featured.gym_shorts.promo_2.label }}

    @@ -50,17 +50,17 @@

    {{ featured.gym_shorts.promo_2.label }}

    - {{ courses[featured.gym_shorts.promo_2.ID].topic }} + {{ courses[featured.gym_shorts.promo_2.id].topic }}

    - - {{ courses[featured.gym_shorts.promo_2.ID].title }} + + {{ courses[featured.gym_shorts.promo_2.id].title }}

    -

    {{ courses[featured.gym_shorts.promo_2.ID].description }}

    +

    {{ courses[featured.gym_shorts.promo_2.id].description }}

    @@ -75,8 +75,8 @@

    {{ featured.gym_shorts.promo_3.label }}

    @@ -84,17 +84,17 @@

    {{ featured.gym_shorts.promo_3.label }}

    - {{ courses[featured.gym_shorts.promo_3.ID].topic }} + {{ courses[featured.gym_shorts.promo_3.id].topic }}

    - - {{ courses[featured.gym_shorts.promo_3.ID].title }} + + {{ courses[featured.gym_shorts.promo_3.id].title }}

    -

    {{ courses[featured.gym_shorts.promo_3.ID].description }}

    +

    {{ courses[featured.gym_shorts.promo_3.id].description }}

    diff --git a/courses/take5/GYM-5054/index.md b/courses/take5/GYM-5054/index.md index d8953c1b2..9d448fb24 100644 --- a/courses/take5/GYM-5054/index.md +++ b/courses/take5/GYM-5054/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5054 +id: GYM-5054 permalink: /courses/take5/gym-5054 --- diff --git a/courses/take5/GYM-5054/meta.md b/courses/take5/GYM-5054/meta.md index 0cc750393..a25bcfca1 100644 --- a/courses/take5/GYM-5054/meta.md +++ b/courses/take5/GYM-5054/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5054 +id: GYM-5054 permalink: /courses/take5/gym-5054/meta/ --- diff --git a/courses/take5/GYM-5055/index.md b/courses/take5/GYM-5055/index.md index e969cffbc..259be98c6 100644 --- a/courses/take5/GYM-5055/index.md +++ b/courses/take5/GYM-5055/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5055 +id: GYM-5055 permalink: /courses/take5/gym-5055 --- diff --git a/courses/take5/GYM-5055/meta.md b/courses/take5/GYM-5055/meta.md index 8614649c9..293441d81 100644 --- a/courses/take5/GYM-5055/meta.md +++ b/courses/take5/GYM-5055/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5055 +id: GYM-5055 permalink: /courses/take5/gym-5055/meta/ --- diff --git a/courses/take5/GYM-5057/index.md b/courses/take5/GYM-5057/index.md index f83505208..8cd7ebab8 100644 --- a/courses/take5/GYM-5057/index.md +++ b/courses/take5/GYM-5057/index.md @@ -1,6 +1,6 @@ --- layout: take5-raw -course_ID: GYM-5057 +id: GYM-5057 permalink: /courses/take5/gym-5057 --- diff --git a/courses/take5/GYM-5057/meta.md b/courses/take5/GYM-5057/meta.md index 7e8432029..d128af155 100644 --- a/courses/take5/GYM-5057/meta.md +++ b/courses/take5/GYM-5057/meta.md @@ -1,5 +1,5 @@ --- layout: meta -course_ID: GYM-5057 +id: GYM-5057 permalink: /courses/take5/gym-5057/meta/ --- From 69fd2a4f1b3309d7aa9aca9564850df2e16fd13a Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Wed, 15 Nov 2023 10:05:19 -0500 Subject: [PATCH 64/67] remove --- _data/config.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/_data/config.yml b/_data/config.yml index 4d8d37d28..c7e33c11a 100644 --- a/_data/config.yml +++ b/_data/config.yml @@ -112,10 +112,6 @@ navigation: links: - title: Gymnasium (Production) href: https://thegymnasium.com - - title: Gym Astro - href: GYM_ASTRO_URL - - title: Gym Eleventy - href: GYM_ELEVENTY_URL - title: Gym Soy Data href: GYM_DATA_URL - title: Gym LMS From 43a213fcb461029771c041746ee3a17afe1a6358 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Thu, 30 Nov 2023 15:37:19 -0500 Subject: [PATCH 65/67] shuffle images for 11ty --- _data/courses/GYM-001.yml | 2 +- _data/courses/GYM-002.yml | 2 +- _data/courses/GYM-003.yml | 2 +- _data/courses/GYM-004.yml | 2 +- _data/courses/GYM-005.yml | 2 +- _data/courses/GYM-006.yml | 2 +- _data/courses/GYM-007.yml | 2 +- _data/courses/GYM-008.yml | 2 +- _data/courses/GYM-009.yml | 2 +- _data/courses/GYM-011.yml | 2 +- _data/courses/GYM-012.yml | 2 +- _data/courses/GYM-013.yml | 2 +- _data/courses/GYM-014.yml | 2 +- _data/courses/GYM-015.yml | 2 +- _data/courses/GYM-016.yml | 2 +- _data/courses/GYM-017.yml | 2 +- _data/courses/GYM-018.yml | 2 +- _data/courses/GYM-019.yml | 2 +- _data/courses/GYM-020.yml | 2 +- _data/courses/GYM-100.yml | 2 +- _data/courses/GYM-101.yml | 2 +- _data/courses/GYM-102.yml | 2 +- _data/courses/GYM-103.yml | 2 +- _data/courses/GYM-104.yml | 2 +- _data/courses/GYM-105.yml | 2 +- _data/courses/GYM-106.yml | 2 +- _data/courses/GYM-107.yml | 2 +- _data/courses/GYM-108.yml | 2 +- _data/courses/GYM-109.yml | 2 +- _data/take5/GYM-5001.yml | 2 +- _data/take5/GYM-5002.yml | 2 +- _data/take5/GYM-5003.yml | 2 +- _data/take5/GYM-5004.yml | 2 +- _data/take5/GYM-5005.yml | 2 +- _data/take5/GYM-5006.yml | 2 +- _data/take5/GYM-5007.yml | 2 +- _data/take5/GYM-5008.yml | 2 +- _data/take5/GYM-5009.yml | 2 +- _data/take5/GYM-5010.yml | 2 +- _data/take5/GYM-5011.yml | 2 +- _data/take5/GYM-5012.yml | 2 +- _data/take5/GYM-5013.yml | 2 +- _data/take5/GYM-5014.yml | 2 +- _data/take5/GYM-5015.yml | 2 +- _data/take5/GYM-5016.yml | 2 +- _data/take5/GYM-5017.yml | 2 +- _data/take5/GYM-5018.yml | 2 +- _data/take5/GYM-5019.yml | 2 +- _data/take5/GYM-5020.yml | 2 +- _data/take5/GYM-5021.yml | 2 +- _data/take5/GYM-5022.yml | 2 +- _data/take5/GYM-5023.yml | 2 +- _data/take5/GYM-5024.yml | 2 +- _data/take5/GYM-5025.yml | 2 +- _data/take5/GYM-5026.yml | 2 +- _data/take5/GYM-5027.yml | 2 +- _data/take5/GYM-5028.yml | 2 +- _data/take5/GYM-5029.yml | 2 +- _data/take5/GYM-5030.yml | 2 +- _data/take5/GYM-5031.yml | 2 +- _data/take5/GYM-5032.yml | 2 +- _data/take5/GYM-5033.yml | 2 +- _data/take5/GYM-5034.yml | 2 +- _data/take5/GYM-5035.yml | 2 +- _data/take5/GYM-5036.yml | 2 +- _data/take5/GYM-5037.yml | 2 +- _data/take5/GYM-5038.yml | 2 +- _data/take5/GYM-5039.yml | 2 +- _data/take5/GYM-5040.yml | 2 +- _data/take5/GYM-5041.yml | 2 +- _data/take5/GYM-5042.yml | 2 +- _data/take5/GYM-5043.yml | 2 +- _data/take5/GYM-5044.yml | 2 +- _data/take5/GYM-5045.yml | 2 +- _data/take5/GYM-5046.yml | 2 +- _data/take5/GYM-5047.yml | 2 +- _data/take5/GYM-5048.yml | 2 +- _data/take5/GYM-5049.yml | 2 +- _data/take5/GYM-5050.yml | 2 +- _data/take5/GYM-5051.yml | 2 +- _data/take5/GYM-5052.yml | 2 +- _data/take5/GYM-5053.yml | 2 +- _data/take5/GYM-5054.yml | 2 +- _data/take5/GYM-5055.yml | 2 +- _data/take5/GYM-5056.yml | 2 +- _data/take5/GYM-5057.yml | 2 +- _data/workshops/GYM-700.yml | 2 +- _includes/heros/hero-take5-campaign.html | 2 +- _includes/home/featured-courses.html | 4 +- _includes/partials/meta/logic-courses.html | 2 +- _includes/partials/meta/logic-take5.html | 2 +- _includes/partials/meta/logic-webinars.html | 4 +- _includes/take5/recommended-content.html | 6 +- courses/full/course-list-recent.html | 4 +- courses/full/meta.md | 2 +- courses/gym-shorts/course-list-recent.html | 4 +- courses/gym-shorts/meta.md | 2 +- courses/meta.md | 2 +- courses/take5/meta.md | 2 +- courses/workshops/course-list-recent.html | 4 +- css/heros/hero-gym-016.scss | 4 +- css/heros/hero-take5-campaign.scss | 20 ++--- css/heros/hero-take5.scss | 4 +- docs/README.md | 18 ++-- feeds/featured-courses.html | 4 +- feeds/webinars.json | 4 +- hub-pages/accessibility/index.html | 2 +- hub-pages/career-skills/index.html | 30 +++---- hub-pages/design-systems/index.html | 8 +- hub-pages/prototyping/index.html | 36 ++++---- hub-pages/remote-work/index.html | 2 +- hub-pages/ux-design/index.html | 40 ++++----- hub-pages/web-development/index.html | 84 +++++++++--------- .../png => courses}/gym-000.png | Bin .../svg => courses}/gym-000.svg | 0 .../png => courses}/gym-001.png | Bin .../svg => courses}/gym-001.svg | 0 .../png => courses}/gym-002.png | Bin .../svg => courses}/gym-002.svg | 0 .../png => courses}/gym-003.png | Bin .../svg => courses}/gym-003.svg | 0 .../png => courses}/gym-004.png | Bin .../svg => courses}/gym-004.svg | 0 .../png => courses}/gym-005.png | Bin .../svg => courses}/gym-005.svg | 0 .../png => courses}/gym-006.png | Bin .../svg => courses}/gym-006.svg | 0 .../png => courses}/gym-007.png | Bin .../svg => courses}/gym-007.svg | 0 .../png => courses}/gym-008.png | Bin .../svg => courses}/gym-008.svg | 0 .../png => courses}/gym-009.png | Bin .../svg => courses}/gym-009.svg | 0 .../png => courses}/gym-011.png | Bin .../svg => courses}/gym-011.svg | 0 .../png => courses}/gym-012.png | Bin .../svg => courses}/gym-012.svg | 0 .../png => courses}/gym-013.png | Bin .../svg => courses}/gym-013.svg | 0 .../png => courses}/gym-014.png | Bin .../svg => courses}/gym-014.svg | 0 .../png => courses}/gym-015.png | Bin .../svg => courses}/gym-015.svg | 0 .../png => courses}/gym-016.png | Bin .../svg => courses}/gym-016.svg | 0 .../png => courses}/gym-017.png | Bin .../svg => courses}/gym-017.svg | 0 .../png => courses}/gym-018.png | Bin .../svg => courses}/gym-018.svg | 0 .../png => courses}/gym-019.png | Bin .../svg => courses}/gym-019.svg | 0 .../png => courses}/gym-020.png | Bin .../svg => courses}/gym-020.svg | 0 .../png => courses}/gym-100.png | Bin .../svg => courses}/gym-100.svg | 0 .../png => courses}/gym-101.png | Bin .../svg => courses}/gym-101.svg | 0 .../png => courses}/gym-102.png | Bin .../svg => courses}/gym-102.svg | 0 .../png => courses}/gym-103.png | Bin .../svg => courses}/gym-103.svg | 0 .../png => courses}/gym-104.png | Bin .../svg => courses}/gym-104.svg | 0 .../png => courses}/gym-105.png | Bin .../svg => courses}/gym-105.svg | 0 .../png => courses}/gym-106.png | Bin .../svg => courses}/gym-106.svg | 0 .../png => courses}/gym-107.png | Bin .../svg => courses}/gym-107.svg | 0 .../png => courses}/gym-108.png | Bin .../svg => courses}/gym-108.svg | 0 .../png => courses}/gym-109.png | Bin .../svg => courses}/gym-109.svg | 0 .../png => courses}/gym-700.png | Bin .../svg => courses}/gym-700.svg | 0 .../og/gym-001-og.png} | Bin .../og/gym-002-og.png} | Bin .../og/gym-003-og.png} | Bin .../og/gym-004-og.png} | Bin .../og/gym-005-og.png} | Bin .../og/gym-006-og.png} | Bin .../og/gym-007-og.png} | Bin .../og/gym-008-og.png} | Bin .../og/gym-009-og.png} | Bin .../og/gym-011-og.png} | Bin .../og/gym-012-og.png} | Bin .../og/gym-013-og.png} | Bin .../og/gym-014-og.png} | Bin .../og/gym-015-og.png} | Bin .../og/gym-016-og.png} | Bin .../og/gym-017-og.png} | Bin .../og/gym-018-og.png} | Bin .../og/gym-019-og.png} | Bin .../og/gym-020-og.png} | Bin .../og/gym-100-og.png} | Bin .../og/gym-101-og.png} | Bin .../og/gym-102-og.png} | Bin .../og/gym-103-og.png} | Bin .../og/gym-104-og.png} | Bin .../og/gym-105-og.png} | Bin .../og/gym-106-og.png} | Bin .../og/gym-107-og.png} | Bin .../og/gym-108-og.png} | Bin .../og/gym-109-og.png} | Bin .../og/gym-700-og.png} | Bin .../courses => courses/og}/gym-courses-og.png | Bin .../posters => tutorials}/gym-5001-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5001.jpg | Bin .../posters => tutorials}/gym-5002-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5002.jpg | Bin .../posters => tutorials}/gym-5003-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5003.jpg | Bin .../posters => tutorials}/gym-5004-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5004.jpg | Bin .../posters => tutorials}/gym-5005-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5005.jpg | Bin .../posters => tutorials}/gym-5006-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5006.jpg | Bin .../posters => tutorials}/gym-5007-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5007.jpg | Bin .../posters => tutorials}/gym-5008-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5008.jpg | Bin .../posters => tutorials}/gym-5009-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5009.jpg | Bin .../posters => tutorials}/gym-5010-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5010.jpg | Bin .../posters => tutorials}/gym-5011-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5011.jpg | Bin .../posters => tutorials}/gym-5012-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5012.jpg | Bin .../posters => tutorials}/gym-5013-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5013.jpg | Bin .../posters => tutorials}/gym-5014-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5014.jpg | Bin .../posters => tutorials}/gym-5015-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5015.jpg | Bin .../posters => tutorials}/gym-5016-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5016.jpg | Bin .../posters => tutorials}/gym-5017-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5017.jpg | Bin .../posters => tutorials}/gym-5018-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5018.jpg | Bin .../posters => tutorials}/gym-5019-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5019.jpg | Bin .../posters => tutorials}/gym-5020-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5020.jpg | Bin .../posters => tutorials}/gym-5021-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5021.jpg | Bin .../posters => tutorials}/gym-5022-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5022.jpg | Bin .../posters => tutorials}/gym-5023-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5023.jpg | Bin .../posters => tutorials}/gym-5024-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5024.jpg | Bin .../posters => tutorials}/gym-5025-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5025.jpg | Bin .../posters => tutorials}/gym-5026-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5026.jpg | Bin .../posters => tutorials}/gym-5027-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5027.jpg | Bin .../posters => tutorials}/gym-5028-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5028.jpg | Bin .../posters => tutorials}/gym-5029-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5029.jpg | Bin .../posters => tutorials}/gym-5030-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5030.jpg | Bin .../posters => tutorials}/gym-5031-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5031.jpg | Bin .../posters => tutorials}/gym-5032-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5032.jpg | Bin .../posters => tutorials}/gym-5033-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5033.jpg | Bin .../posters => tutorials}/gym-5034-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5034.jpg | Bin .../posters => tutorials}/gym-5035-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5035.jpg | Bin .../posters => tutorials}/gym-5036-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5036.jpg | Bin .../posters => tutorials}/gym-5037-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5037.jpg | Bin .../posters => tutorials}/gym-5038-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5038.jpg | Bin .../posters => tutorials}/gym-5039-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5039.jpg | Bin .../posters => tutorials}/gym-5040-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5040.jpg | Bin .../posters => tutorials}/gym-5041-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5041.jpg | Bin .../posters => tutorials}/gym-5042-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5042.jpg | Bin .../posters => tutorials}/gym-5043-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5043.jpg | Bin .../posters => tutorials}/gym-5044-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5044.jpg | Bin .../posters => tutorials}/gym-5045-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5045.jpg | Bin .../posters => tutorials}/gym-5046-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5046.jpg | Bin .../posters => tutorials}/gym-5047-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5047.jpg | Bin .../posters => tutorials}/gym-5048-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5048.jpg | Bin .../posters => tutorials}/gym-5049-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5049.jpg | Bin .../posters => tutorials}/gym-5050-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5050.jpg | Bin .../posters => tutorials}/gym-5051-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5051.jpg | Bin .../posters => tutorials}/gym-5052-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5052.jpg | Bin .../posters => tutorials}/gym-5053-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5053.jpg | Bin .../posters => tutorials}/gym-5054-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5054.jpg | Bin .../posters => tutorials}/gym-5055-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5055.jpg | Bin .../posters => tutorials}/gym-5056-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5056.jpg | Bin .../posters => tutorials}/gym-5057-hero.jpg | Bin img/{take5/posters => tutorials}/gym-5057.jpg | Bin img/{take5 => tutorials}/og/gym-5001-og.png | Bin img/{take5 => tutorials}/og/gym-5002-og.png | Bin img/{take5 => tutorials}/og/gym-5003-og.png | Bin img/{take5 => tutorials}/og/gym-5004-og.png | Bin img/{take5 => tutorials}/og/gym-5005-og.png | Bin img/{take5 => tutorials}/og/gym-5006-og.png | Bin img/{take5 => tutorials}/og/gym-5007-og.png | Bin img/{take5 => tutorials}/og/gym-5008-og.png | Bin img/{take5 => tutorials}/og/gym-5009-og.png | Bin img/{take5 => tutorials}/og/gym-5010-og.png | Bin img/{take5 => tutorials}/og/gym-5011-og.png | Bin img/{take5 => tutorials}/og/gym-5012-og.png | Bin img/{take5 => tutorials}/og/gym-5013-og.png | Bin img/{take5 => tutorials}/og/gym-5014-og.png | Bin img/{take5 => tutorials}/og/gym-5015-og.png | Bin img/{take5 => tutorials}/og/gym-5016-og.png | Bin img/{take5 => tutorials}/og/gym-5017-og.png | Bin img/{take5 => tutorials}/og/gym-5018-og.png | Bin img/{take5 => tutorials}/og/gym-5019-og.png | Bin img/{take5 => tutorials}/og/gym-5020-og.png | Bin img/{take5 => tutorials}/og/gym-5021-og.png | Bin img/{take5 => tutorials}/og/gym-5022-og.png | Bin img/{take5 => tutorials}/og/gym-5023-og.png | Bin img/{take5 => tutorials}/og/gym-5024-og.png | Bin img/{take5 => tutorials}/og/gym-5025-og.png | Bin img/{take5 => tutorials}/og/gym-5026-og.png | Bin img/{take5 => tutorials}/og/gym-5027-og.png | Bin img/{take5 => tutorials}/og/gym-5028-og.png | Bin img/{take5 => tutorials}/og/gym-5029-og.png | Bin img/{take5 => tutorials}/og/gym-5030-og.png | Bin img/{take5 => tutorials}/og/gym-5031-og.png | Bin img/{take5 => tutorials}/og/gym-5032-og.png | Bin img/{take5 => tutorials}/og/gym-5033-og.png | Bin img/{take5 => tutorials}/og/gym-5034-og.png | Bin img/{take5 => tutorials}/og/gym-5035-og.png | Bin img/{take5 => tutorials}/og/gym-5036-og.png | Bin img/{take5 => tutorials}/og/gym-5037-og.png | Bin img/{take5 => tutorials}/og/gym-5038-og.png | Bin img/{take5 => tutorials}/og/gym-5039-og.png | Bin img/{take5 => tutorials}/og/gym-5040-og.png | Bin img/{take5 => tutorials}/og/gym-5041-og.png | Bin img/{take5 => tutorials}/og/gym-5042-og.png | Bin img/{take5 => tutorials}/og/gym-5043-og.png | Bin img/{take5 => tutorials}/og/gym-5044-og.png | Bin img/{take5 => tutorials}/og/gym-5045-og.png | Bin img/{take5 => tutorials}/og/gym-5046-og.png | Bin img/{take5 => tutorials}/og/gym-5047-og.png | Bin img/{take5 => tutorials}/og/gym-5048-og.png | Bin img/{take5 => tutorials}/og/gym-5049-og.png | Bin img/{take5 => tutorials}/og/gym-5050-og.png | Bin img/{take5 => tutorials}/og/gym-5051-og.png | Bin img/{take5 => tutorials}/og/gym-5052-og.png | Bin img/{take5 => tutorials}/og/gym-5053-og.png | Bin img/{take5 => tutorials}/og/gym-5054-og.png | Bin img/{take5 => tutorials}/og/gym-5055-og.png | Bin img/{take5 => tutorials}/og/gym-5056-og.png | Bin img/{take5 => tutorials}/og/gym-5057-og.png | Bin img/{take5 => tutorials}/og/gym-take5-og.png | Bin .../decade-of-responsive-web-design.jpg | Bin .../design-systems-and-creativity.jpg | Bin .../designing-for-real-people.jpg | Bin .../designing-for-understanding.jpg | Bin .../decade-of-responsive-web-design-slide.jpg | Bin .../future-of-web-layout-grid-slide.jpg | Bin .../prototyping-as-process-paravel-slide.jpg | Bin .../remote-work-begin-your-journey-slide.jpg | Bin .../webinars/featured/ux-slide-erin-young.jpg | Bin .../future-of-web-layout.jpg | Bin .../keeping-up-with-javascript.jpg | Bin ...cade-of-responsive-web-design-event-og.png | Bin ...-of-responsive-web-design-recording-og.png | Bin .../og}/default_ogimage.png | Bin ...design-systems-and-creativity-event-og.png | Bin ...gn-systems-and-creativity-recording-og.png | Bin .../designing-for-real-people-event-og.png | Bin ...designing-for-real-people-recording-og.png | Bin .../designing-for-understanding-event-og.png | Bin ...signing-for-understanding-recording-og.png | Bin .../og}/future-of-web-layout-event-og.png | Bin .../og}/future-of-web-layout-recording-og.png | Bin .../og}/gym-webinars-og.png | Bin .../keeping-up-with-javascript-event-og.png | Bin ...eeping-up-with-javascript-recording-og.png | Bin .../og}/planning-before-pixels-event-og.png | Bin .../planning-before-pixels-recording-og.png | Bin .../og}/prototyping-as-process-event-og.png | Bin .../prototyping-as-process-recording-og.png | Bin .../og}/remote-work-event-og.png | Bin .../og}/remote-work-recording-og.png | Bin .../og}/rethinking-full-stack-event-og.png | Bin .../rethinking-full-stack-recording-og.png | Bin ...-sizing-your-rapid-prototypes-event-og.png | Bin ...ing-your-rapid-prototypes-recording-og.png | Bin ...tate-of-responsive-web-design-event-og.png | Bin ...-of-responsive-web-design-recording-og.png | Bin .../og}/web-design-is-hard-event-og.png | Bin .../og}/web-design-is-hard-recording-og.png | Bin .../planning-before-pixels.jpg | Bin .../prototyping-as-process.jpg | Bin .../rethinking-full-stack.jpg | Bin .../right-sizing-your-rapid-prototypes.jpg | Bin .../state-of-responsive-web-design.jpg | Bin .../web-design-is-hard.jpg | Bin jobs/index.html | 2 +- partials/sidebar-generic.html | 4 +- tests/catalog/full-lister.html | 4 +- tests/featurer.html | 4 +- webinars/index.html | 2 +- webinars/meta.md | 2 +- 429 files changed, 244 insertions(+), 244 deletions(-) rename img/{course-artwork/png => courses}/gym-000.png (100%) rename img/{course-artwork/svg => courses}/gym-000.svg (100%) rename img/{course-artwork/png => courses}/gym-001.png (100%) rename img/{course-artwork/svg => courses}/gym-001.svg (100%) rename img/{course-artwork/png => courses}/gym-002.png (100%) rename img/{course-artwork/svg => courses}/gym-002.svg (100%) rename img/{course-artwork/png => courses}/gym-003.png (100%) rename img/{course-artwork/svg => courses}/gym-003.svg (100%) rename img/{course-artwork/png => courses}/gym-004.png (100%) rename img/{course-artwork/svg => courses}/gym-004.svg (100%) rename img/{course-artwork/png => courses}/gym-005.png (100%) rename img/{course-artwork/svg => courses}/gym-005.svg (100%) rename img/{course-artwork/png => courses}/gym-006.png (100%) rename img/{course-artwork/svg => courses}/gym-006.svg (100%) rename img/{course-artwork/png => courses}/gym-007.png (100%) rename img/{course-artwork/svg => courses}/gym-007.svg (100%) rename img/{course-artwork/png => courses}/gym-008.png (100%) rename img/{course-artwork/svg => courses}/gym-008.svg (100%) rename img/{course-artwork/png => courses}/gym-009.png (100%) rename img/{course-artwork/svg => courses}/gym-009.svg (100%) rename img/{course-artwork/png => courses}/gym-011.png (100%) rename img/{course-artwork/svg => courses}/gym-011.svg (100%) rename img/{course-artwork/png => courses}/gym-012.png (100%) rename img/{course-artwork/svg => courses}/gym-012.svg (100%) rename img/{course-artwork/png => courses}/gym-013.png (100%) rename img/{course-artwork/svg => courses}/gym-013.svg (100%) rename img/{course-artwork/png => courses}/gym-014.png (100%) rename img/{course-artwork/svg => courses}/gym-014.svg (100%) rename img/{course-artwork/png => courses}/gym-015.png (100%) rename img/{course-artwork/svg => courses}/gym-015.svg (100%) rename img/{course-artwork/png => courses}/gym-016.png (100%) rename img/{course-artwork/svg => courses}/gym-016.svg (100%) rename img/{course-artwork/png => courses}/gym-017.png (100%) rename img/{course-artwork/svg => courses}/gym-017.svg (100%) rename img/{course-artwork/png => courses}/gym-018.png (100%) rename img/{course-artwork/svg => courses}/gym-018.svg (100%) rename img/{course-artwork/png => courses}/gym-019.png (100%) rename img/{course-artwork/svg => courses}/gym-019.svg (100%) rename img/{course-artwork/png => courses}/gym-020.png (100%) rename img/{course-artwork/svg => courses}/gym-020.svg (100%) rename img/{course-artwork/png => courses}/gym-100.png (100%) rename img/{course-artwork/svg => courses}/gym-100.svg (100%) rename img/{course-artwork/png => courses}/gym-101.png (100%) rename img/{course-artwork/svg => courses}/gym-101.svg (100%) rename img/{course-artwork/png => courses}/gym-102.png (100%) rename img/{course-artwork/svg => courses}/gym-102.svg (100%) rename img/{course-artwork/png => courses}/gym-103.png (100%) rename img/{course-artwork/svg => courses}/gym-103.svg (100%) rename img/{course-artwork/png => courses}/gym-104.png (100%) rename img/{course-artwork/svg => courses}/gym-104.svg (100%) rename img/{course-artwork/png => courses}/gym-105.png (100%) rename img/{course-artwork/svg => courses}/gym-105.svg (100%) rename img/{course-artwork/png => courses}/gym-106.png (100%) rename img/{course-artwork/svg => courses}/gym-106.svg (100%) rename img/{course-artwork/png => courses}/gym-107.png (100%) rename img/{course-artwork/svg => courses}/gym-107.svg (100%) rename img/{course-artwork/png => courses}/gym-108.png (100%) rename img/{course-artwork/svg => courses}/gym-108.svg (100%) rename img/{course-artwork/png => courses}/gym-109.png (100%) rename img/{course-artwork/svg => courses}/gym-109.svg (100%) rename img/{course-artwork/png => courses}/gym-700.png (100%) rename img/{course-artwork/svg => courses}/gym-700.svg (100%) rename img/{social/courses/gym-001-social.png => courses/og/gym-001-og.png} (100%) rename img/{social/courses/gym-002-social.png => courses/og/gym-002-og.png} (100%) rename img/{social/courses/gym-003-social.png => courses/og/gym-003-og.png} (100%) rename img/{social/courses/gym-004-social.png => courses/og/gym-004-og.png} (100%) rename img/{social/courses/gym-005-social.png => courses/og/gym-005-og.png} (100%) rename img/{social/courses/gym-006-social.png => courses/og/gym-006-og.png} (100%) rename img/{social/courses/gym-007-social.png => courses/og/gym-007-og.png} (100%) rename img/{social/courses/gym-008-social.png => courses/og/gym-008-og.png} (100%) rename img/{social/courses/gym-009-social.png => courses/og/gym-009-og.png} (100%) rename img/{social/courses/gym-011-social.png => courses/og/gym-011-og.png} (100%) rename img/{social/courses/gym-012-social.png => courses/og/gym-012-og.png} (100%) rename img/{social/courses/gym-013-social.png => courses/og/gym-013-og.png} (100%) rename img/{social/courses/gym-014-social.png => courses/og/gym-014-og.png} (100%) rename img/{social/courses/gym-015-social.png => courses/og/gym-015-og.png} (100%) rename img/{social/courses/gym-016-social.png => courses/og/gym-016-og.png} (100%) rename img/{social/courses/gym-017-social.png => courses/og/gym-017-og.png} (100%) rename img/{social/courses/gym-018-social.png => courses/og/gym-018-og.png} (100%) rename img/{social/courses/gym-019-social.png => courses/og/gym-019-og.png} (100%) rename img/{social/courses/gym-020-social.png => courses/og/gym-020-og.png} (100%) rename img/{social/courses/gym-100-social.png => courses/og/gym-100-og.png} (100%) rename img/{social/courses/gym-101-social.png => courses/og/gym-101-og.png} (100%) rename img/{social/courses/gym-102-social.png => courses/og/gym-102-og.png} (100%) rename img/{social/courses/gym-103-social.png => courses/og/gym-103-og.png} (100%) rename img/{social/courses/gym-104-social.png => courses/og/gym-104-og.png} (100%) rename img/{social/courses/gym-105-social.png => courses/og/gym-105-og.png} (100%) rename img/{social/courses/gym-106-social.png => courses/og/gym-106-og.png} (100%) rename img/{social/courses/gym-107-social.png => courses/og/gym-107-og.png} (100%) rename img/{social/courses/gym-108-social.png => courses/og/gym-108-og.png} (100%) rename img/{social/courses/gym-109-social.png => courses/og/gym-109-og.png} (100%) rename img/{social/courses/gym-700-social.png => courses/og/gym-700-og.png} (100%) rename img/{social/courses => courses/og}/gym-courses-og.png (100%) rename img/{take5/posters => tutorials}/gym-5001-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5001.jpg (100%) rename img/{take5/posters => tutorials}/gym-5002-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5002.jpg (100%) rename img/{take5/posters => tutorials}/gym-5003-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5003.jpg (100%) rename img/{take5/posters => tutorials}/gym-5004-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5004.jpg (100%) rename img/{take5/posters => tutorials}/gym-5005-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5005.jpg (100%) rename img/{take5/posters => tutorials}/gym-5006-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5006.jpg (100%) rename img/{take5/posters => tutorials}/gym-5007-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5007.jpg (100%) rename img/{take5/posters => tutorials}/gym-5008-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5008.jpg (100%) rename img/{take5/posters => tutorials}/gym-5009-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5009.jpg (100%) rename img/{take5/posters => tutorials}/gym-5010-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5010.jpg (100%) rename img/{take5/posters => tutorials}/gym-5011-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5011.jpg (100%) rename img/{take5/posters => tutorials}/gym-5012-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5012.jpg (100%) rename img/{take5/posters => tutorials}/gym-5013-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5013.jpg (100%) rename img/{take5/posters => tutorials}/gym-5014-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5014.jpg (100%) rename img/{take5/posters => tutorials}/gym-5015-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5015.jpg (100%) rename img/{take5/posters => tutorials}/gym-5016-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5016.jpg (100%) rename img/{take5/posters => tutorials}/gym-5017-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5017.jpg (100%) rename img/{take5/posters => tutorials}/gym-5018-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5018.jpg (100%) rename img/{take5/posters => tutorials}/gym-5019-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5019.jpg (100%) rename img/{take5/posters => tutorials}/gym-5020-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5020.jpg (100%) rename img/{take5/posters => tutorials}/gym-5021-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5021.jpg (100%) rename img/{take5/posters => tutorials}/gym-5022-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5022.jpg (100%) rename img/{take5/posters => tutorials}/gym-5023-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5023.jpg (100%) rename img/{take5/posters => tutorials}/gym-5024-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5024.jpg (100%) rename img/{take5/posters => tutorials}/gym-5025-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5025.jpg (100%) rename img/{take5/posters => tutorials}/gym-5026-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5026.jpg (100%) rename img/{take5/posters => tutorials}/gym-5027-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5027.jpg (100%) rename img/{take5/posters => tutorials}/gym-5028-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5028.jpg (100%) rename img/{take5/posters => tutorials}/gym-5029-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5029.jpg (100%) rename img/{take5/posters => tutorials}/gym-5030-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5030.jpg (100%) rename img/{take5/posters => tutorials}/gym-5031-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5031.jpg (100%) rename img/{take5/posters => tutorials}/gym-5032-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5032.jpg (100%) rename img/{take5/posters => tutorials}/gym-5033-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5033.jpg (100%) rename img/{take5/posters => tutorials}/gym-5034-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5034.jpg (100%) rename img/{take5/posters => tutorials}/gym-5035-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5035.jpg (100%) rename img/{take5/posters => tutorials}/gym-5036-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5036.jpg (100%) rename img/{take5/posters => tutorials}/gym-5037-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5037.jpg (100%) rename img/{take5/posters => tutorials}/gym-5038-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5038.jpg (100%) rename img/{take5/posters => tutorials}/gym-5039-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5039.jpg (100%) rename img/{take5/posters => tutorials}/gym-5040-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5040.jpg (100%) rename img/{take5/posters => tutorials}/gym-5041-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5041.jpg (100%) rename img/{take5/posters => tutorials}/gym-5042-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5042.jpg (100%) rename img/{take5/posters => tutorials}/gym-5043-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5043.jpg (100%) rename img/{take5/posters => tutorials}/gym-5044-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5044.jpg (100%) rename img/{take5/posters => tutorials}/gym-5045-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5045.jpg (100%) rename img/{take5/posters => tutorials}/gym-5046-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5046.jpg (100%) rename img/{take5/posters => tutorials}/gym-5047-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5047.jpg (100%) rename img/{take5/posters => tutorials}/gym-5048-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5048.jpg (100%) rename img/{take5/posters => tutorials}/gym-5049-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5049.jpg (100%) rename img/{take5/posters => tutorials}/gym-5050-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5050.jpg (100%) rename img/{take5/posters => tutorials}/gym-5051-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5051.jpg (100%) rename img/{take5/posters => tutorials}/gym-5052-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5052.jpg (100%) rename img/{take5/posters => tutorials}/gym-5053-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5053.jpg (100%) rename img/{take5/posters => tutorials}/gym-5054-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5054.jpg (100%) rename img/{take5/posters => tutorials}/gym-5055-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5055.jpg (100%) rename img/{take5/posters => tutorials}/gym-5056-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5056.jpg (100%) rename img/{take5/posters => tutorials}/gym-5057-hero.jpg (100%) rename img/{take5/posters => tutorials}/gym-5057.jpg (100%) rename img/{take5 => tutorials}/og/gym-5001-og.png (100%) rename img/{take5 => tutorials}/og/gym-5002-og.png (100%) rename img/{take5 => tutorials}/og/gym-5003-og.png (100%) rename img/{take5 => tutorials}/og/gym-5004-og.png (100%) rename img/{take5 => tutorials}/og/gym-5005-og.png (100%) rename img/{take5 => tutorials}/og/gym-5006-og.png (100%) rename img/{take5 => tutorials}/og/gym-5007-og.png (100%) rename img/{take5 => tutorials}/og/gym-5008-og.png (100%) rename img/{take5 => tutorials}/og/gym-5009-og.png (100%) rename img/{take5 => tutorials}/og/gym-5010-og.png (100%) rename img/{take5 => tutorials}/og/gym-5011-og.png (100%) rename img/{take5 => tutorials}/og/gym-5012-og.png (100%) rename img/{take5 => tutorials}/og/gym-5013-og.png (100%) rename img/{take5 => tutorials}/og/gym-5014-og.png (100%) rename img/{take5 => tutorials}/og/gym-5015-og.png (100%) rename img/{take5 => tutorials}/og/gym-5016-og.png (100%) rename img/{take5 => tutorials}/og/gym-5017-og.png (100%) rename img/{take5 => tutorials}/og/gym-5018-og.png (100%) rename img/{take5 => tutorials}/og/gym-5019-og.png (100%) rename img/{take5 => tutorials}/og/gym-5020-og.png (100%) rename img/{take5 => tutorials}/og/gym-5021-og.png (100%) rename img/{take5 => tutorials}/og/gym-5022-og.png (100%) rename img/{take5 => tutorials}/og/gym-5023-og.png (100%) rename img/{take5 => tutorials}/og/gym-5024-og.png (100%) rename img/{take5 => tutorials}/og/gym-5025-og.png (100%) rename img/{take5 => tutorials}/og/gym-5026-og.png (100%) rename img/{take5 => tutorials}/og/gym-5027-og.png (100%) rename img/{take5 => tutorials}/og/gym-5028-og.png (100%) rename img/{take5 => tutorials}/og/gym-5029-og.png (100%) rename img/{take5 => tutorials}/og/gym-5030-og.png (100%) rename img/{take5 => tutorials}/og/gym-5031-og.png (100%) rename img/{take5 => tutorials}/og/gym-5032-og.png (100%) rename img/{take5 => tutorials}/og/gym-5033-og.png (100%) rename img/{take5 => tutorials}/og/gym-5034-og.png (100%) rename img/{take5 => tutorials}/og/gym-5035-og.png (100%) rename img/{take5 => tutorials}/og/gym-5036-og.png (100%) rename img/{take5 => tutorials}/og/gym-5037-og.png (100%) rename img/{take5 => tutorials}/og/gym-5038-og.png (100%) rename img/{take5 => tutorials}/og/gym-5039-og.png (100%) rename img/{take5 => tutorials}/og/gym-5040-og.png (100%) rename img/{take5 => tutorials}/og/gym-5041-og.png (100%) rename img/{take5 => tutorials}/og/gym-5042-og.png (100%) rename img/{take5 => tutorials}/og/gym-5043-og.png (100%) rename img/{take5 => tutorials}/og/gym-5044-og.png (100%) rename img/{take5 => tutorials}/og/gym-5045-og.png (100%) rename img/{take5 => tutorials}/og/gym-5046-og.png (100%) rename img/{take5 => tutorials}/og/gym-5047-og.png (100%) rename img/{take5 => tutorials}/og/gym-5048-og.png (100%) rename img/{take5 => tutorials}/og/gym-5049-og.png (100%) rename img/{take5 => tutorials}/og/gym-5050-og.png (100%) rename img/{take5 => tutorials}/og/gym-5051-og.png (100%) rename img/{take5 => tutorials}/og/gym-5052-og.png (100%) rename img/{take5 => tutorials}/og/gym-5053-og.png (100%) rename img/{take5 => tutorials}/og/gym-5054-og.png (100%) rename img/{take5 => tutorials}/og/gym-5055-og.png (100%) rename img/{take5 => tutorials}/og/gym-5056-og.png (100%) rename img/{take5 => tutorials}/og/gym-5057-og.png (100%) rename img/{take5 => tutorials}/og/gym-take5-og.png (100%) rename img/{hub-pages/webinars/posters => webinars}/decade-of-responsive-web-design.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/design-systems-and-creativity.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/designing-for-real-people.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/designing-for-understanding.jpg (100%) rename img/{hub-pages => }/webinars/featured/decade-of-responsive-web-design-slide.jpg (100%) rename img/{hub-pages => }/webinars/featured/future-of-web-layout-grid-slide.jpg (100%) rename img/{hub-pages => }/webinars/featured/prototyping-as-process-paravel-slide.jpg (100%) rename img/{hub-pages => }/webinars/featured/remote-work-begin-your-journey-slide.jpg (100%) rename img/{hub-pages => }/webinars/featured/ux-slide-erin-young.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/future-of-web-layout.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/keeping-up-with-javascript.jpg (100%) rename img/{social/webinars => webinars/og}/decade-of-responsive-web-design-event-og.png (100%) rename img/{social/webinars => webinars/og}/decade-of-responsive-web-design-recording-og.png (100%) rename img/{social/webinars => webinars/og}/default_ogimage.png (100%) rename img/{social/webinars => webinars/og}/design-systems-and-creativity-event-og.png (100%) rename img/{social/webinars => webinars/og}/design-systems-and-creativity-recording-og.png (100%) rename img/{social/webinars => webinars/og}/designing-for-real-people-event-og.png (100%) rename img/{social/webinars => webinars/og}/designing-for-real-people-recording-og.png (100%) rename img/{social/webinars => webinars/og}/designing-for-understanding-event-og.png (100%) rename img/{social/webinars => webinars/og}/designing-for-understanding-recording-og.png (100%) rename img/{social/webinars => webinars/og}/future-of-web-layout-event-og.png (100%) rename img/{social/webinars => webinars/og}/future-of-web-layout-recording-og.png (100%) rename img/{social/webinars => webinars/og}/gym-webinars-og.png (100%) rename img/{social/webinars => webinars/og}/keeping-up-with-javascript-event-og.png (100%) rename img/{social/webinars => webinars/og}/keeping-up-with-javascript-recording-og.png (100%) rename img/{social/webinars => webinars/og}/planning-before-pixels-event-og.png (100%) rename img/{social/webinars => webinars/og}/planning-before-pixels-recording-og.png (100%) rename img/{social/webinars => webinars/og}/prototyping-as-process-event-og.png (100%) rename img/{social/webinars => webinars/og}/prototyping-as-process-recording-og.png (100%) rename img/{social/webinars => webinars/og}/remote-work-event-og.png (100%) rename img/{social/webinars => webinars/og}/remote-work-recording-og.png (100%) rename img/{social/webinars => webinars/og}/rethinking-full-stack-event-og.png (100%) rename img/{social/webinars => webinars/og}/rethinking-full-stack-recording-og.png (100%) rename img/{social/webinars => webinars/og}/right-sizing-your-rapid-prototypes-event-og.png (100%) rename img/{social/webinars => webinars/og}/right-sizing-your-rapid-prototypes-recording-og.png (100%) rename img/{social/webinars => webinars/og}/state-of-responsive-web-design-event-og.png (100%) rename img/{social/webinars => webinars/og}/state-of-responsive-web-design-recording-og.png (100%) rename img/{social/webinars => webinars/og}/web-design-is-hard-event-og.png (100%) rename img/{social/webinars => webinars/og}/web-design-is-hard-recording-og.png (100%) rename img/{hub-pages/webinars/posters => webinars}/planning-before-pixels.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/prototyping-as-process.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/rethinking-full-stack.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/right-sizing-your-rapid-prototypes.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/state-of-responsive-web-design.jpg (100%) rename img/{hub-pages/webinars/posters => webinars}/web-design-is-hard.jpg (100%) diff --git a/_data/courses/GYM-001.yml b/_data/courses/GYM-001.yml index a0f82ffda..58198fc36 100644 --- a/_data/courses/GYM-001.yml +++ b/_data/courses/GYM-001.yml @@ -4,7 +4,7 @@ title: "Defeating Busy" date: 2019-10-28T00:00:00-04:00 type: short url: /courses/GYM/001/0/about -img: /img/course-artwork/png/gym-001.png +img: /img/courses/gym-001.svg live: true topic: "Career Skills" description: "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is." diff --git a/_data/courses/GYM-002.yml b/_data/courses/GYM-002.yml index 2cfcd054f..dc892a9fd 100644 --- a/_data/courses/GYM-002.yml +++ b/_data/courses/GYM-002.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired. Due to outdated content, we don’t offer a badge for this course, but you can still view the lessons. We recommend taking the updated course Introduction to Node.js (and earning a badge) instead." url: /courses/GYM/002/0/about -img: /img/course-artwork/png/gym-002.png +img: /img/courses/gym-002.svg topic: "Development" description: "This course has been retired." description_orig: "Learn the basics of Node.js by building a “sample social” profile form." diff --git a/_data/courses/GYM-003.yml b/_data/courses/GYM-003.yml index 76755b961..17d2756e4 100644 --- a/_data/courses/GYM-003.yml +++ b/_data/courses/GYM-003.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired. Due to outdated content, we don’t offer a badge for this course, but you can still view the lessons. We recommend watching the tutorial Prototyping in the Browser with CSS Grid Layout instead." url: /courses/GYM/003/0/about -img: /img/course-artwork/png/gym-003.png +img: /img/courses/gym-003.svg topic: "Development" description: "This course has been retired." description_orig: "Get up to speed with the Twitter Bootstrap’s grid layout system and learn how to build a responsive layout that looks great on multiple screen sizes and devices." diff --git a/_data/courses/GYM-004.yml b/_data/courses/GYM-004.yml index 81a6e1ac8..44ec3ee8f 100644 --- a/_data/courses/GYM-004.yml +++ b/_data/courses/GYM-004.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/GYM/004/0/about -img: /img/course-artwork/png/gym-004.png +img: /img/courses/gym-004.svg topic: "Development" description: "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design." instructor: ghodgkinson diff --git a/_data/courses/GYM-005.yml b/_data/courses/GYM-005.yml index 4cc6560f4..b5a8f44ed 100644 --- a/_data/courses/GYM-005.yml +++ b/_data/courses/GYM-005.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired. Due to outdated content, we don’t offer a badge for this course, but you can still view the lessons." url: /courses/GYM/005/0/about -img: /img/course-artwork/png/gym-005.png +img: /img/courses/gym-005.svg topic: "UX" subtopics: - label: "Prototyping" diff --git a/_data/courses/GYM-006.yml b/_data/courses/GYM-006.yml index 21f7b56e4..adc787082 100644 --- a/_data/courses/GYM-006.yml +++ b/_data/courses/GYM-006.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/GYM/006/0/about -img: /img/course-artwork/png/gym-006.png +img: /img/courses/gym-006.svg topic: "Development" description: "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either." instructor: jausura diff --git a/_data/courses/GYM-007.yml b/_data/courses/GYM-007.yml index 84d99ba8f..608b61975 100644 --- a/_data/courses/GYM-007.yml +++ b/_data/courses/GYM-007.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/GYM/007/0/about -img: /img/course-artwork/png/gym-007.png +img: /img/courses/gym-007.svg topic: "Development" description: "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes." instructor: jkramer diff --git a/_data/courses/GYM-008.yml b/_data/courses/GYM-008.yml index 826ed796c..825426de7 100644 --- a/_data/courses/GYM-008.yml +++ b/_data/courses/GYM-008.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired. Due to outdated content, we don’t offer a badge for this course, but you can still view the lessons." url: /courses/GYM/008/0/about -img: /img/course-artwork/png/gym-008.png +img: /img/courses/gym-008.svg topic: "UX" subtopics: - label: "Prototyping" diff --git a/_data/courses/GYM-009.yml b/_data/courses/GYM-009.yml index 6110a286d..3defc1665 100644 --- a/_data/courses/GYM-009.yml +++ b/_data/courses/GYM-009.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/GYM/009/0/about -img: /img/course-artwork/png/gym-009.png +img: /img/courses/gym-009.svg topic: "Development" description: "This course will teach you how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme." instructor: ghodgkinson diff --git a/_data/courses/GYM-011.yml b/_data/courses/GYM-011.yml index ffbf8b621..bd181a8ff 100644 --- a/_data/courses/GYM-011.yml +++ b/_data/courses/GYM-011.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+011+0/about -img: /img/course-artwork/png/gym-011.png +img: /img/courses/gym-011.svg topic: "Development" description: "In this course, you will get a familiarity with all aspects of the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications." instructor: kpeters diff --git a/_data/courses/GYM-012.yml b/_data/courses/GYM-012.yml index 199a25f7e..b7a4b6f42 100644 --- a/_data/courses/GYM-012.yml +++ b/_data/courses/GYM-012.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+012+0/about -img: /img/course-artwork/png/gym-012.png +img: /img/courses/gym-012.svg topic: "Development" subtopics: - label: "JavaScript" diff --git a/_data/courses/GYM-013.yml b/_data/courses/GYM-013.yml index ccf5cdf85..9cc5f9a79 100644 --- a/_data/courses/GYM-013.yml +++ b/_data/courses/GYM-013.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+013+0/about -img: /img/course-artwork/png/gym-013.png +img: /img/courses/gym-013.svg topic: "Design" description: "Learn how to create 3D generated imagery in Maya for use in Virtual Reality production." instructor: groberts diff --git a/_data/courses/GYM-014.yml b/_data/courses/GYM-014.yml index 423b485ef..3e30d87e7 100644 --- a/_data/courses/GYM-014.yml +++ b/_data/courses/GYM-014.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+014+0/about -img: /img/course-artwork/png/gym-014.png +img: /img/courses/gym-014.svg topic: "Development" subtopics: - label: "Design Systems" diff --git a/_data/courses/GYM-015.yml b/_data/courses/GYM-015.yml index 1f36c7204..cd3c7f5df 100644 --- a/_data/courses/GYM-015.yml +++ b/_data/courses/GYM-015.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+015+0/about -img: /img/course-artwork/png/gym-015.png +img: /img/courses/gym-015.svg topic: "UX" subtopics: - label: "Prototyping" diff --git a/_data/courses/GYM-016.yml b/_data/courses/GYM-016.yml index df818996a..f3f9ffbe4 100644 --- a/_data/courses/GYM-016.yml +++ b/_data/courses/GYM-016.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+016+0/about -img: /img/course-artwork/png/gym-016.png +img: /img/courses/gym-016.svg topic: "Development" subtopics: - label: "Accessibility" diff --git a/_data/courses/GYM-017.yml b/_data/courses/GYM-017.yml index 306f746aa..22a1191f5 100644 --- a/_data/courses/GYM-017.yml +++ b/_data/courses/GYM-017.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+017+0/about -img: /img/course-artwork/png/gym-017.png +img: /img/courses/gym-017.svg topic: "Design" subtopics: - label: "Design Systems" diff --git a/_data/courses/GYM-018.yml b/_data/courses/GYM-018.yml index ac30fb709..85b2f4fa8 100644 --- a/_data/courses/GYM-018.yml +++ b/_data/courses/GYM-018.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+018+0/about -img: /img/course-artwork/png/gym-018.png +img: /img/courses/gym-018.svg topic: "Design" subtopics: - label: "Design Systems" diff --git a/_data/courses/GYM-019.yml b/_data/courses/GYM-019.yml index 0e90e656e..97be12a02 100644 --- a/_data/courses/GYM-019.yml +++ b/_data/courses/GYM-019.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+019+0/about -img: /img/course-artwork/png/gym-019.png +img: /img/courses/gym-019.svg topic: "Development" subtopics: - label: "Design Systems" diff --git a/_data/courses/GYM-020.yml b/_data/courses/GYM-020.yml index 2c102f00f..45cc3e04f 100644 --- a/_data/courses/GYM-020.yml +++ b/_data/courses/GYM-020.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: short live: true url: /courses/course-v1:GYM+020+0/about -img: /img/course-artwork/png/gym-020.png +img: /img/courses/gym-020.svg topic: "Design" subtopics: - label: "Design Systems" diff --git a/_data/courses/GYM-100.yml b/_data/courses/GYM-100.yml index cefa60274..9407bb9b6 100644 --- a/_data/courses/GYM-100.yml +++ b/_data/courses/GYM-100.yml @@ -8,7 +8,7 @@ retired_message: 1: "This course is retiring on March 25, 2022. All coursework needs to be completed by that date." 2: "This course has been retired. We recommend taking the course Modern Web Design instead. It’s a bit more advanced, but we think you’d get a lot out of it." url: /courses/GYM/100/0/about -img: /img/course-artwork/png/gym-100.png +img: /img/courses/gym-100.svg topic: "Development" description: "This course has been retired." description_orig: "Learn HTML and CSS and become the Web Designer that Developers love. Professional design experience is a prerequisite, but no prior web or coding experience is necessary." diff --git a/_data/courses/GYM-101.yml b/_data/courses/GYM-101.yml index e643ce43a..72ec867dd 100644 --- a/_data/courses/GYM-101.yml +++ b/_data/courses/GYM-101.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired. Due to outdated content, we don’t offer a certificate for this course, but you can still view the lessons. We recommend taking the course Responsive Web Design Fundamentals (and earning a certificate) instead." url: /courses/GYM/101/0/about -img: /img/course-artwork/png/gym-101.png +img: /img/courses/gym-101.svg topic: "Development" description: "This course has been retired." description_orig: "In this course, you’ll learn best practices for building responsive websites that adapt to different devices and user behaviors." diff --git a/_data/courses/GYM-102.yml b/_data/courses/GYM-102.yml index 5c3bffd12..682da2f90 100644 --- a/_data/courses/GYM-102.yml +++ b/_data/courses/GYM-102.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/GYM/102/0/about -img: /img/course-artwork/png/gym-102.png +img: /img/courses/gym-102.svg topic: "Development" subtopics: - label: "JavaScript" diff --git a/_data/courses/GYM-103.yml b/_data/courses/GYM-103.yml index ec078f452..0510d40b3 100644 --- a/_data/courses/GYM-103.yml +++ b/_data/courses/GYM-103.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/GYM/103/0/about -img: /img/course-artwork/png/gym-103.png +img: /img/courses/gym-103.svg topic: "UX" description: "Learn how to apply user-centered design principles to improve your website and mobile app design. A must-take course for anyone working in design and development." instructor: jwebb diff --git a/_data/courses/GYM-104.yml b/_data/courses/GYM-104.yml index 033fda27b..31e8c1882 100644 --- a/_data/courses/GYM-104.yml +++ b/_data/courses/GYM-104.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/GYM/104/0/about -img: /img/course-artwork/png/gym-104.png +img: /img/courses/gym-104.svg topic: "Development" subtopics: - label: "JavaScript" diff --git a/_data/courses/GYM-105.yml b/_data/courses/GYM-105.yml index 7e346a4ab..744280602 100644 --- a/_data/courses/GYM-105.yml +++ b/_data/courses/GYM-105.yml @@ -7,7 +7,7 @@ live: false retired_message: 1: "This course has been retired." url: /courses/GYM/105/0/about -img: /img/course-artwork/png/gym-105.png +img: /img/courses/gym-105.svg topic: "Career Skills" description: "This course has been retired." description_orig: "Learn how to write compelling content through meaningful audience research and find the right words to attract and engage users." diff --git a/_data/courses/GYM-106.yml b/_data/courses/GYM-106.yml index 9deba2d78..59e6f89ba 100644 --- a/_data/courses/GYM-106.yml +++ b/_data/courses/GYM-106.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/GYM/106/0/about -img: /img/course-artwork/png/gym-106.png +img: /img/courses/gym-106.svg topic: "Design" description: "Learn the design and visual principles needed to create effective information graphics and data visualizations." instructor: groberts diff --git a/_data/courses/GYM-107.yml b/_data/courses/GYM-107.yml index ef5920866..607e81f97 100644 --- a/_data/courses/GYM-107.yml +++ b/_data/courses/GYM-107.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/GYM/107/0/about -img: /img/course-artwork/png/gym-107.png +img: /img/courses/gym-107.svg topic: "Development" description: "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS, and JavaScript." instructor: agustafson diff --git a/_data/courses/GYM-108.yml b/_data/courses/GYM-108.yml index 2aeaf3b19..f26a52889 100644 --- a/_data/courses/GYM-108.yml +++ b/_data/courses/GYM-108.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/course-v1:GYM+108+0/about -img: /img/course-artwork/png/gym-108.png +img: /img/courses/gym-108.svg topic: "Development" subtopics: - label: "JavaScript" diff --git a/_data/courses/GYM-109.yml b/_data/courses/GYM-109.yml index bffb36969..c57a663f0 100644 --- a/_data/courses/GYM-109.yml +++ b/_data/courses/GYM-109.yml @@ -5,7 +5,7 @@ date: 2019-10-28T00:00:00-04:00 type: full live: true url: /courses/course-v1:GYM+109+0/about -img: /img/course-artwork/png/gym-109.png +img: /img/courses/gym-109.svg topic: "Development" description: "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices." instructor: jpamental diff --git a/_data/take5/GYM-5001.yml b/_data/take5/GYM-5001.yml index b24b44912..481aa2384 100644 --- a/_data/take5/GYM-5001.yml +++ b/_data/take5/GYM-5001.yml @@ -4,7 +4,7 @@ title: "Making a CSS Parallax Effect" date: 2019-10-28T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5001/ -img: /img/take5/posters/gym-5001.jpg +img: /img/tutorials/gym-5001.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5002.yml b/_data/take5/GYM-5002.yml index ce84a684e..3d289a47f 100644 --- a/_data/take5/GYM-5002.yml +++ b/_data/take5/GYM-5002.yml @@ -4,7 +4,7 @@ title: "Creating a CSS Knockout Text Effect" date: 2019-10-29T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5002/ -img: /img/take5/posters/gym-5002.jpg +img: /img/tutorials/gym-5002.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5003.yml b/_data/take5/GYM-5003.yml index 139a00f51..06f60535d 100644 --- a/_data/take5/GYM-5003.yml +++ b/_data/take5/GYM-5003.yml @@ -4,7 +4,7 @@ title: "Adding a CSS Gradient Overlay to an Image" date: 2019-10-30T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5003/ -img: /img/take5/posters/gym-5003.jpg +img: /img/tutorials/gym-5003.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5004.yml b/_data/take5/GYM-5004.yml index 51a39f1bf..dd5457c27 100644 --- a/_data/take5/GYM-5004.yml +++ b/_data/take5/GYM-5004.yml @@ -4,7 +4,7 @@ title: "Working with CSS Feature Queries" date: 2019-10-31T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5004/ -img: /img/take5/posters/gym-5004.jpg +img: /img/tutorials/gym-5004.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5005.yml b/_data/take5/GYM-5005.yml index 08d0d81c4..7e021c75d 100644 --- a/_data/take5/GYM-5005.yml +++ b/_data/take5/GYM-5005.yml @@ -4,7 +4,7 @@ title: "Creating a Duotone with CSS" date: 2019-11-01T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5005/ -img: /img/take5/posters/gym-5005.jpg +img: /img/tutorials/gym-5005.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5006.yml b/_data/take5/GYM-5006.yml index e35ed5546..9d64cd3c7 100644 --- a/_data/take5/GYM-5006.yml +++ b/_data/take5/GYM-5006.yml @@ -4,7 +4,7 @@ title: "Leading a Card Sorting Session" date: 2019-11-18T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5006/ -img: /img/take5/posters/gym-5006.jpg +img: /img/tutorials/gym-5006.jpg live: true instructor: "Heather O’Neill" instructor_bio: "CEO of Pixels for Humans" diff --git a/_data/take5/GYM-5007.yml b/_data/take5/GYM-5007.yml index e255fadd3..233c4d87e 100644 --- a/_data/take5/GYM-5007.yml +++ b/_data/take5/GYM-5007.yml @@ -4,7 +4,7 @@ title: "Conducting Customer Interviews" date: 2019-11-19T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5007/ -img: /img/take5/posters/gym-5007.jpg +img: /img/tutorials/gym-5007.jpg live: true instructor: "Heather O’Neill" instructor_bio: "CEO of Pixels for Humans" diff --git a/_data/take5/GYM-5008.yml b/_data/take5/GYM-5008.yml index ef0ca0b52..07717eaea 100644 --- a/_data/take5/GYM-5008.yml +++ b/_data/take5/GYM-5008.yml @@ -4,7 +4,7 @@ title: "Writing Effective Survey Questions" date: 2019-11-20T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5008/ -img: /img/take5/posters/gym-5008.jpg +img: /img/tutorials/gym-5008.jpg live: true instructor: "Heather O’Neill" instructor_bio: "CEO of Pixels for Humans" diff --git a/_data/take5/GYM-5009.yml b/_data/take5/GYM-5009.yml index 79194a049..15e33ca08 100644 --- a/_data/take5/GYM-5009.yml +++ b/_data/take5/GYM-5009.yml @@ -4,7 +4,7 @@ title: "Leading Your First Usability Test" date: 2019-11-21T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5009/ -img: /img/take5/posters/gym-5009.jpg +img: /img/tutorials/gym-5009.jpg live: true instructor: "Heather O’Neill" instructor_bio: "CEO of Pixels for Humans" diff --git a/_data/take5/GYM-5010.yml b/_data/take5/GYM-5010.yml index 0c9a7de72..caa3686d7 100644 --- a/_data/take5/GYM-5010.yml +++ b/_data/take5/GYM-5010.yml @@ -4,7 +4,7 @@ title: "Using the KJ Method" date: 2019-11-22T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5010/ -img: /img/take5/posters/gym-5010.jpg +img: /img/tutorials/gym-5010.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5011.yml b/_data/take5/GYM-5011.yml index 0e4d6b0ad..d8ab8a129 100644 --- a/_data/take5/GYM-5011.yml +++ b/_data/take5/GYM-5011.yml @@ -4,7 +4,7 @@ title: "Using Smart Layout in Sketch" date: 2019-11-04T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5011/ -img: /img/take5/posters/gym-5011.jpg +img: /img/tutorials/gym-5011.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5012.yml b/_data/take5/GYM-5012.yml index 6e3a9fbf8..071862f5f 100644 --- a/_data/take5/GYM-5012.yml +++ b/_data/take5/GYM-5012.yml @@ -4,7 +4,7 @@ title: "Prototyping in the Browser with CSS Grid Layout" date: 2019-11-05T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5012/ -img: /img/take5/posters/gym-5012.jpg +img: /img/tutorials/gym-5012.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5013.yml b/_data/take5/GYM-5013.yml index bc8e208c1..db131f18a 100644 --- a/_data/take5/GYM-5013.yml +++ b/_data/take5/GYM-5013.yml @@ -4,7 +4,7 @@ title: "Working with the Timeline in InVision Studio" date: 2019-11-06T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5013/ -img: /img/take5/posters/gym-5013.jpg +img: /img/tutorials/gym-5013.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5014.yml b/_data/take5/GYM-5014.yml index 874439367..c81035086 100644 --- a/_data/take5/GYM-5014.yml +++ b/_data/take5/GYM-5014.yml @@ -4,7 +4,7 @@ title: "Using Auto-Animate in Adobe XD" date: 2019-11-07T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5014/ -img: /img/take5/posters/gym-5014.jpg +img: /img/tutorials/gym-5014.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5015.yml b/_data/take5/GYM-5015.yml index c71836aca..3ac318236 100644 --- a/_data/take5/GYM-5015.yml +++ b/_data/take5/GYM-5015.yml @@ -4,7 +4,7 @@ title: "Creating Advanced Animations in Figma" date: 2019-11-08T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5015/ -img: /img/take5/posters/gym-5015.jpg +img: /img/tutorials/gym-5015.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5016.yml b/_data/take5/GYM-5016.yml index 87031a26c..627b74f3d 100644 --- a/_data/take5/GYM-5016.yml +++ b/_data/take5/GYM-5016.yml @@ -4,7 +4,7 @@ title: "Storytelling for Designers" date: 2019-11-11T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5016/ -img: /img/take5/posters/gym-5016.jpg +img: /img/tutorials/gym-5016.jpg live: true instructor: "Lee Andrese" instructor_bio: "Vice President of Learning and Development at Onward Search" diff --git a/_data/take5/GYM-5017.yml b/_data/take5/GYM-5017.yml index 44b2b9c88..62342353f 100644 --- a/_data/take5/GYM-5017.yml +++ b/_data/take5/GYM-5017.yml @@ -4,7 +4,7 @@ title: "How to Tell the Story of a Mid-Career Pivot" date: 2019-11-12T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5017/ -img: /img/take5/posters/gym-5017.jpg +img: /img/tutorials/gym-5017.jpg live: true instructor: "Anne Ditmeyer" instructor_bio: "Creative Coach" diff --git a/_data/take5/GYM-5018.yml b/_data/take5/GYM-5018.yml index 4d72b508e..90766c79c 100644 --- a/_data/take5/GYM-5018.yml +++ b/_data/take5/GYM-5018.yml @@ -4,7 +4,7 @@ title: "Crafting Your Story" date: 2019-11-13T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5018/ -img: /img/take5/posters/gym-5018.jpg +img: /img/tutorials/gym-5018.jpg live: true instructor: "Lee Andrese" instructor_bio: "Vice President of Learning and Development at Onward Search" diff --git a/_data/take5/GYM-5019.yml b/_data/take5/GYM-5019.yml index c79f27777..8f2d9d599 100644 --- a/_data/take5/GYM-5019.yml +++ b/_data/take5/GYM-5019.yml @@ -4,7 +4,7 @@ title: "Self-Promotion Through Your Online Presence" date: 2019-11-14T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5019/ -img: /img/take5/posters/gym-5019.jpg +img: /img/tutorials/gym-5019.jpg live: true instructor: "Anne Ditmeyer" instructor_bio: "Creative Coach" diff --git a/_data/take5/GYM-5020.yml b/_data/take5/GYM-5020.yml index 1fd0baf3d..9add73f8a 100644 --- a/_data/take5/GYM-5020.yml +++ b/_data/take5/GYM-5020.yml @@ -4,7 +4,7 @@ title: "Knowing Your Audience" date: 2019-11-15T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5020/ -img: /img/take5/posters/gym-5020.jpg +img: /img/tutorials/gym-5020.jpg live: true instructor: "Lee Andrese" instructor_bio: "Vice President of Learning and Development at Onward Search" diff --git a/_data/take5/GYM-5021.yml b/_data/take5/GYM-5021.yml index 12a84d9fb..ffefff654 100644 --- a/_data/take5/GYM-5021.yml +++ b/_data/take5/GYM-5021.yml @@ -4,7 +4,7 @@ title: "Using CSS Generated Content for Links" date: 2019-12-03T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5021/ -img: /img/take5/posters/gym-5021.jpg +img: /img/tutorials/gym-5021.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5022.yml b/_data/take5/GYM-5022.yml index 207f52cc1..827061cb8 100644 --- a/_data/take5/GYM-5022.yml +++ b/_data/take5/GYM-5022.yml @@ -4,7 +4,7 @@ title: "Creating a Pixel Perfect Icon in Sketch" date: 2019-12-10T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5022/ -img: /img/take5/posters/gym-5022.jpg +img: /img/tutorials/gym-5022.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5023.yml b/_data/take5/GYM-5023.yml index 9d38a3462..e8518f369 100644 --- a/_data/take5/GYM-5023.yml +++ b/_data/take5/GYM-5023.yml @@ -4,7 +4,7 @@ title: "Creating A Harmonious Color Scheme with HSL" date: 2020-01-13T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5023/ -img: /img/take5/posters/gym-5023.jpg +img: /img/tutorials/gym-5023.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5024.yml b/_data/take5/GYM-5024.yml index 65bdb8fdf..2a549e605 100644 --- a/_data/take5/GYM-5024.yml +++ b/_data/take5/GYM-5024.yml @@ -4,7 +4,7 @@ title: "Writing CSS Media Queries For Responsive Design" date: 2020-01-20T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5024/ -img: /img/take5/posters/gym-5024.jpg +img: /img/tutorials/gym-5024.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5025.yml b/_data/take5/GYM-5025.yml index 987a0ec84..6338a098c 100644 --- a/_data/take5/GYM-5025.yml +++ b/_data/take5/GYM-5025.yml @@ -4,7 +4,7 @@ title: "Getting Started with CSS Variables" date: 2020-01-27T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5025/ -img: /img/take5/posters/gym-5025.jpg +img: /img/tutorials/gym-5025.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5026.yml b/_data/take5/GYM-5026.yml index 315d1996a..8bc7f333b 100644 --- a/_data/take5/GYM-5026.yml +++ b/_data/take5/GYM-5026.yml @@ -4,7 +4,7 @@ title: "Publishing Your First GitHub Pages Website" date: 2020-02-03T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5026/ -img: /img/take5/posters/gym-5026.jpg +img: /img/tutorials/gym-5026.jpg live: true instructor: "Mike Bifulco" instructor_bio: "Developer Advocate at Stripe" diff --git a/_data/take5/GYM-5027.yml b/_data/take5/GYM-5027.yml index 6d3bde841..c47ce9d83 100644 --- a/_data/take5/GYM-5027.yml +++ b/_data/take5/GYM-5027.yml @@ -4,7 +4,7 @@ title: "Managing Your Time Like a Pro" date: 2020-02-10T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5027/ -img: /img/take5/posters/gym-5027.jpg +img: /img/tutorials/gym-5027.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5028.yml b/_data/take5/GYM-5028.yml index 179fd2fb1..fd79a8476 100644 --- a/_data/take5/GYM-5028.yml +++ b/_data/take5/GYM-5028.yml @@ -4,7 +4,7 @@ title: "Adding a Dark Mode Theme to Your Website" date: 2020-02-17T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5028/ -img: /img/take5/posters/gym-5028.jpg +img: /img/tutorials/gym-5028.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5029.yml b/_data/take5/GYM-5029.yml index 99235b8f1..b5a978b8e 100644 --- a/_data/take5/GYM-5029.yml +++ b/_data/take5/GYM-5029.yml @@ -4,7 +4,7 @@ title: "Animating Microinteractions with Figma" date: 2020-02-24T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5029/ -img: /img/take5/posters/gym-5029.jpg +img: /img/tutorials/gym-5029.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5030.yml b/_data/take5/GYM-5030.yml index 62b85f58a..a9e92957d 100644 --- a/_data/take5/GYM-5030.yml +++ b/_data/take5/GYM-5030.yml @@ -4,7 +4,7 @@ title: "Working with Overlays in Figma" date: 2020-03-03T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5030/ -img: /img/take5/posters/gym-5030.jpg +img: /img/tutorials/gym-5030.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5031.yml b/_data/take5/GYM-5031.yml index 90598b31e..f11a55255 100644 --- a/_data/take5/GYM-5031.yml +++ b/_data/take5/GYM-5031.yml @@ -4,7 +4,7 @@ title: "Creating an Interactive Chart for the Web" date: 2020-03-31T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5031/ -img: /img/take5/posters/gym-5031.jpg +img: /img/tutorials/gym-5031.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5032.yml b/_data/take5/GYM-5032.yml index 2dcfee6df..90dcaadec 100644 --- a/_data/take5/GYM-5032.yml +++ b/_data/take5/GYM-5032.yml @@ -4,7 +4,7 @@ title: "Introduction to Screen Readers Using VoiceOver" date: 2020-06-22T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5032/ -img: /img/take5/posters/gym-5032.jpg +img: /img/tutorials/gym-5032.jpg live: true instructor: "Ethan Marcotte" instructor_bio: "Partner at Autogram" diff --git a/_data/take5/GYM-5033.yml b/_data/take5/GYM-5033.yml index e054a9523..68e3f5e90 100644 --- a/_data/take5/GYM-5033.yml +++ b/_data/take5/GYM-5033.yml @@ -4,7 +4,7 @@ title: "Designing Beautiful Focus States" date: 2020-06-23T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5033/ -img: /img/take5/posters/gym-5033.jpg +img: /img/tutorials/gym-5033.jpg live: true instructor: "Ethan Marcotte" instructor_bio: "Partner at Autogram" diff --git a/_data/take5/GYM-5034.yml b/_data/take5/GYM-5034.yml index 131cb22ef..bed27f6f1 100644 --- a/_data/take5/GYM-5034.yml +++ b/_data/take5/GYM-5034.yml @@ -4,7 +4,7 @@ title: "Flexible and Accessible Typesetting" date: 2020-06-24T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5034/ -img: /img/take5/posters/gym-5034.jpg +img: /img/tutorials/gym-5034.jpg live: true instructor: "Ethan Marcotte" instructor_bio: "Partner at Autogram" diff --git a/_data/take5/GYM-5035.yml b/_data/take5/GYM-5035.yml index a64d37609..b2a3c339d 100644 --- a/_data/take5/GYM-5035.yml +++ b/_data/take5/GYM-5035.yml @@ -4,7 +4,7 @@ title: "Responsively Designing with Viewport Units" date: 2020-06-25T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5035/ -img: /img/take5/posters/gym-5035.jpg +img: /img/tutorials/gym-5035.jpg live: true instructor: "Ethan Marcotte" instructor_bio: "Partner at Autogram" diff --git a/_data/take5/GYM-5036.yml b/_data/take5/GYM-5036.yml index 3d4d252d9..2459ddcab 100644 --- a/_data/take5/GYM-5036.yml +++ b/_data/take5/GYM-5036.yml @@ -4,7 +4,7 @@ title: "Creating Beautiful and Accessible Drop Caps" date: 2020-06-26T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5036/ -img: /img/take5/posters/gym-5036.jpg +img: /img/tutorials/gym-5036.jpg live: true instructor: "Ethan Marcotte" instructor_bio: "Partner at Autogram" diff --git a/_data/take5/GYM-5037.yml b/_data/take5/GYM-5037.yml index e099dc0d7..d49a8122d 100644 --- a/_data/take5/GYM-5037.yml +++ b/_data/take5/GYM-5037.yml @@ -4,7 +4,7 @@ title: "Understanding Document Structure Accessibility" date: 2020-09-02T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5037/ -img: /img/take5/posters/gym-5037.jpg +img: /img/tutorials/gym-5037.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5038.yml b/_data/take5/GYM-5038.yml index fc0a69891..ccc370815 100644 --- a/_data/take5/GYM-5038.yml +++ b/_data/take5/GYM-5038.yml @@ -4,7 +4,7 @@ title: "Making Headings and Lists More Accessible" date: 2020-09-15T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5038/ -img: /img/take5/posters/gym-5038.jpg +img: /img/tutorials/gym-5038.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5039.yml b/_data/take5/GYM-5039.yml index 89034e99d..bf0fe08e8 100644 --- a/_data/take5/GYM-5039.yml +++ b/_data/take5/GYM-5039.yml @@ -4,7 +4,7 @@ title: "Designing Accessible Data Tables" date: 2020-09-22T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5039/ -img: /img/take5/posters/gym-5039.jpg +img: /img/tutorials/gym-5039.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5040.yml b/_data/take5/GYM-5040.yml index c4ee1a12d..9fc8c7fcd 100644 --- a/_data/take5/GYM-5040.yml +++ b/_data/take5/GYM-5040.yml @@ -4,7 +4,7 @@ title: "Improving Image Accessibility with Alt Text" date: 2020-09-29T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5040/ -img: /img/take5/posters/gym-5040.jpg +img: /img/tutorials/gym-5040.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5041.yml b/_data/take5/GYM-5041.yml index f0a417bd3..73ac482ee 100644 --- a/_data/take5/GYM-5041.yml +++ b/_data/take5/GYM-5041.yml @@ -4,7 +4,7 @@ title: "Writing Effective and Accessible Alt Text" date: 2020-10-06T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5041/ -img: /img/take5/posters/gym-5041.jpg +img: /img/tutorials/gym-5041.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5042.yml b/_data/take5/GYM-5042.yml index 64ad31d75..70e02ff2c 100644 --- a/_data/take5/GYM-5042.yml +++ b/_data/take5/GYM-5042.yml @@ -4,7 +4,7 @@ title: "Understanding the Role of Color in Accessibility" date: 2020-10-13T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5042/ -img: /img/take5/posters/gym-5042.jpg +img: /img/tutorials/gym-5042.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5043.yml b/_data/take5/GYM-5043.yml index 200540ac0..8f38324a4 100644 --- a/_data/take5/GYM-5043.yml +++ b/_data/take5/GYM-5043.yml @@ -4,7 +4,7 @@ title: "Improving Accessibility with Color Contrast" date: 2020-10-20T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5043/ -img: /img/take5/posters/gym-5043.jpg +img: /img/tutorials/gym-5043.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5044.yml b/_data/take5/GYM-5044.yml index a89ebf36a..3f1444619 100644 --- a/_data/take5/GYM-5044.yml +++ b/_data/take5/GYM-5044.yml @@ -4,7 +4,7 @@ title: "Designing Accessible Forms for Everyone" date: 2020-10-27T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5044/ -img: /img/take5/posters/gym-5044.jpg +img: /img/tutorials/gym-5044.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5045.yml b/_data/take5/GYM-5045.yml index f7182c5a7..b06c174c2 100644 --- a/_data/take5/GYM-5045.yml +++ b/_data/take5/GYM-5045.yml @@ -4,7 +4,7 @@ title: "Improving Form Usability and Accessibility" date: 2020-11-03T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5045/ -img: /img/take5/posters/gym-5045.jpg +img: /img/tutorials/gym-5045.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5046.yml b/_data/take5/GYM-5046.yml index 772a9ea69..4d3e63d69 100644 --- a/_data/take5/GYM-5046.yml +++ b/_data/take5/GYM-5046.yml @@ -4,7 +4,7 @@ title: "Creating Accessible Video and Audio Content" date: 2020-11-10T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5046/ -img: /img/take5/posters/gym-5046.jpg +img: /img/tutorials/gym-5046.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5047.yml b/_data/take5/GYM-5047.yml index 7f6a92ff8..9419ba79e 100644 --- a/_data/take5/GYM-5047.yml +++ b/_data/take5/GYM-5047.yml @@ -4,7 +4,7 @@ title: "Creating Accessible Web Animations" date: 2020-11-17T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5047/ -img: /img/take5/posters/gym-5047.jpg +img: /img/tutorials/gym-5047.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5048.yml b/_data/take5/GYM-5048.yml index 8f09042c7..690cf245f 100644 --- a/_data/take5/GYM-5048.yml +++ b/_data/take5/GYM-5048.yml @@ -4,7 +4,7 @@ title: "Using Motion and Web Animation Responsibly" date: 2020-11-24T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5048/ -img: /img/take5/posters/gym-5048.jpg +img: /img/tutorials/gym-5048.jpg live: true instructor: "Clarissa Peterson" instructor_bio: "Strategy Director at Forum One" diff --git a/_data/take5/GYM-5049.yml b/_data/take5/GYM-5049.yml index aad0baf82..89259936d 100644 --- a/_data/take5/GYM-5049.yml +++ b/_data/take5/GYM-5049.yml @@ -4,7 +4,7 @@ title: "Creating Variants in Figma" date: 2021-06-01T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5049/ -img: /img/take5/posters/gym-5049.jpg +img: /img/tutorials/gym-5049.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5050.yml b/_data/take5/GYM-5050.yml index 1acbf73a3..774967b33 100644 --- a/_data/take5/GYM-5050.yml +++ b/_data/take5/GYM-5050.yml @@ -4,7 +4,7 @@ title: "Working with Auto Layout in Figma" date: 2021-06-15T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5050/ -img: /img/take5/posters/gym-5050.jpg +img: /img/tutorials/gym-5050.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5051.yml b/_data/take5/GYM-5051.yml index 3678202cb..3f994abcc 100644 --- a/_data/take5/GYM-5051.yml +++ b/_data/take5/GYM-5051.yml @@ -4,7 +4,7 @@ title: "Advanced Auto Layout in Figma" date: 2021-06-29T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5051/ -img: /img/take5/posters/gym-5051.jpg +img: /img/tutorials/gym-5051.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5052.yml b/_data/take5/GYM-5052.yml index 55fe2fafe..d314db3f3 100644 --- a/_data/take5/GYM-5052.yml +++ b/_data/take5/GYM-5052.yml @@ -4,7 +4,7 @@ title: "Making a Great First Impression with Your Portfolio" date: 2022-08-22T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5052/ -img: /img/take5/posters/gym-5052.jpg +img: /img/tutorials/gym-5052.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5053.yml b/_data/take5/GYM-5053.yml index 7504c6bfb..ca1c8909e 100644 --- a/_data/take5/GYM-5053.yml +++ b/_data/take5/GYM-5053.yml @@ -4,7 +4,7 @@ title: "Crafting a Concise About Page" date: 2022-08-24T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5053/ -img: /img/take5/posters/gym-5053.jpg +img: /img/tutorials/gym-5053.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5054.yml b/_data/take5/GYM-5054.yml index b791ad066..399676252 100644 --- a/_data/take5/GYM-5054.yml +++ b/_data/take5/GYM-5054.yml @@ -4,7 +4,7 @@ title: "Getting Contrast Right in Your Typography" date: 2023-07-25T00:00:00-04:00 course_type: take5 url: /courses/take5/GYM-5054/ -poster_art: /img/take5/posters/gym-5054.jpg +poster_art: /img/tutorials/gym-5054.jpg live: true instructor: "Meagan Fisher" instructor_bio: "Web Designer and Developer at Owltastic" diff --git a/_data/take5/GYM-5055.yml b/_data/take5/GYM-5055.yml index 05e2f4820..9a929a4c6 100644 --- a/_data/take5/GYM-5055.yml +++ b/_data/take5/GYM-5055.yml @@ -4,7 +4,7 @@ title: "Creating an Effective Color Palette in Design" date: 2023-03-16T00:00:00-04:00 course_type: take5 url: /courses/take5/GYM-5055/ -poster_art: /img/take5/posters/gym-5055.jpg +poster_art: /img/tutorials/gym-5055.jpg live: true instructor: "Meagan Fisher" instructor_bio: "Web Designer and Developer at Owltastic" diff --git a/_data/take5/GYM-5056.yml b/_data/take5/GYM-5056.yml index f7b33b17b..dc916c4ee 100644 --- a/_data/take5/GYM-5056.yml +++ b/_data/take5/GYM-5056.yml @@ -4,7 +4,7 @@ title: "Taking Your Portfolio Case Studies to the Next Level" date: 2022-12-05T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5056/ -img: /img/take5/posters/gym-5056.jpg +img: /img/tutorials/gym-5056.jpg live: true instructor: "Jeremy Osborn" instructor_bio: "Director of Learning at Aquent Gymnasium" diff --git a/_data/take5/GYM-5057.yml b/_data/take5/GYM-5057.yml index e7bbf2031..b06b01b92 100644 --- a/_data/take5/GYM-5057.yml +++ b/_data/take5/GYM-5057.yml @@ -4,7 +4,7 @@ title: "Leveling Up Your Layouts in Web Design" date: 2023-07-05T00:00:00-04:00 course_type: take5 url: /courses/take5/GYM-5057/ -poster_art: /img/take5/posters/gym-5057.jpg +poster_art: /img/tutorials/gym-5057.jpg live: true instructor: "Meagan Fisher" instructor_bio: "Web Designer and Developer at Owltastic" diff --git a/_data/workshops/GYM-700.yml b/_data/workshops/GYM-700.yml index 757c563b7..27f320b11 100644 --- a/_data/workshops/GYM-700.yml +++ b/_data/workshops/GYM-700.yml @@ -5,7 +5,7 @@ date: 2022-12-05T00:00:00-04:00 datetime: "December 5–9, Monday–Friday, 4–5 PM EST" type: workshop url: /courses/GYM/700/0/about -img: /img/course-artwork/png/gym-700.png +img: /img/courses/gym-700.png live: false topic: "Career Skills" description: "This workshop will teach students how to create an outstanding portfolio using content strategy and storytelling skills. Students will leave with actionable next steps to improve their portfolio." diff --git a/_includes/heros/hero-take5-campaign.html b/_includes/heros/hero-take5-campaign.html index 90c9871ac..aa849447b 100644 --- a/_includes/heros/hero-take5-campaign.html +++ b/_includes/heros/hero-take5-campaign.html @@ -1,4 +1,4 @@ - +
    diff --git a/_includes/home/featured-courses.html b/_includes/home/featured-courses.html index 614320823..b1f064371 100644 --- a/_includes/home/featured-courses.html +++ b/_includes/home/featured-courses.html @@ -10,8 +10,8 @@ {%- for featured in featured_courses -%} {%- assign artwork_png = site.data.courses[featured].id | downcase | append: '.png' -%} {%- assign artwork_svg = site.data.courses[featured].id | downcase | append: '.svg' -%} - {%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} - {%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} + {%- assign artwork_path_png = site.url | append: "/img/courses/"-%} + {%- assign artwork_path_svg = site.url | append: "/img/courses/"-%} {%- assign instructor = site.data.courses[featured].instructor -%} {%- assign instructor_name = site.data.bios[instructor].name -%} diff --git a/_includes/partials/meta/logic-courses.html b/_includes/partials/meta/logic-courses.html index a1af58ab2..247905660 100644 --- a/_includes/partials/meta/logic-courses.html +++ b/_includes/partials/meta/logic-courses.html @@ -6,4 +6,4 @@ {%- assign og_url = course.url -%} {%- assign og_title = course.title -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} -{%- assign og_art = course.id | downcase | append: "-social.png" | prepend: "/img/social/courses/" -%} +{%- assign og_art = course.id | downcase | append: "-og.png" | prepend: "/img/courses/og/" -%} diff --git a/_includes/partials/meta/logic-take5.html b/_includes/partials/meta/logic-take5.html index 939f8465d..37bc42d22 100644 --- a/_includes/partials/meta/logic-take5.html +++ b/_includes/partials/meta/logic-take5.html @@ -6,5 +6,5 @@ {%- assign og_title = course.title -%} {%- assign og_url = course.title | slugify | prepend: "/courses/take5/" -%} {%- assign page_title = course.title | append: " | Gymnasium" -%} -{%- assign og_art = course.id | downcase | append: "-og.png" | prepend: "/img/take5/og/" -%} +{%- assign og_art = course.id | downcase | append: "-og.png" | prepend: "/img/tutorials/og/" -%} {%- assign og_img_alt = course.title | prepend: "Video poster for tutorial titled " -%} diff --git a/_includes/partials/meta/logic-webinars.html b/_includes/partials/meta/logic-webinars.html index af45e1450..83e6655bc 100644 --- a/_includes/partials/meta/logic-webinars.html +++ b/_includes/partials/meta/logic-webinars.html @@ -17,10 +17,10 @@ {%- if event.register == true -%} {%- assign page_title = "Webinar Registration | Gymnasium" -%} - {%- assign og_art = event.event_ogimage | prepend: "/img/social/webinars/" -%} + {%- assign og_art = event.event_ogimage | prepend: "/img/webinars/og/" -%} {%- endif -%} {%- if event.video == true -%} {%- assign page_title = "Webinar Recording | Gymnasium" -%} - {%- assign og_art = event.recording_ogimage | prepend: "/img/social/webinars/" -%} + {%- assign og_art = event.recording_ogimage | prepend: "/img/webinars/og/" -%} {%- endif -%} diff --git a/_includes/take5/recommended-content.html b/_includes/take5/recommended-content.html index ba33de0c9..ae91d5e01 100644 --- a/_includes/take5/recommended-content.html +++ b/_includes/take5/recommended-content.html @@ -149,7 +149,7 @@

    Courses We Recommend

    @@ -164,7 +164,7 @@

    @@ -179,7 +179,7 @@

    diff --git a/courses/full/course-list-recent.html b/courses/full/course-list-recent.html index 06eb6a13a..acc5e082e 100644 --- a/courses/full/course-list-recent.html +++ b/courses/full/course-list-recent.html @@ -41,8 +41,8 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.id | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.id | downcase | append: ".svg" -%} + {%- assign png_path = "/img/courses/" | append: course.id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/courses/" | append: course.id | downcase | append: ".svg" -%}
  • diff --git a/courses/full/meta.md b/courses/full/meta.md index 0f9dd87a5..90eac90f0 100644 --- a/courses/full/meta.md +++ b/courses/full/meta.md @@ -4,6 +4,6 @@ permalink: /courses/full/meta/ page_title: "Full Courses | Gymnasium" og_title: "Full Courses" og_description: "Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills." -og_art: /img/social/courses/gym-courses-og.png +og_art: /img/courses/og/gym-courses-og.png og_url: https://thegymnasium.com/courses/full --- diff --git a/courses/gym-shorts/course-list-recent.html b/courses/gym-shorts/course-list-recent.html index acbf98586..91ed33623 100644 --- a/courses/gym-shorts/course-list-recent.html +++ b/courses/gym-shorts/course-list-recent.html @@ -41,8 +41,8 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.id | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.id | downcase | append: ".svg" -%} + {%- assign png_path = "/img/courses/" | append: course.id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/courses/" | append: course.id | downcase | append: ".svg" -%}
  • diff --git a/courses/gym-shorts/meta.md b/courses/gym-shorts/meta.md index a8a58fecf..41b1f489c 100644 --- a/courses/gym-shorts/meta.md +++ b/courses/gym-shorts/meta.md @@ -4,6 +4,6 @@ permalink: /courses/gym-shorts/meta/ page_title: "Gym Shorts | Gymnasium" og_title: "Gym Shorts" og_description: "Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills." -og_art: /img/social/courses/gym-courses-og.png +og_art: /img/courses/og/gym-courses-og.png og_url: https://thegymnasium.com/courses/gym-shorts --- diff --git a/courses/meta.md b/courses/meta.md index 1a911bdd4..e064e0e68 100644 --- a/courses/meta.md +++ b/courses/meta.md @@ -5,6 +5,6 @@ page_title: "Courses | Gymnasium" catalog: true og_title: "Courses" og_description: "Design a career you love with free online courses on design, development, accessibility, prototyping, UX, and career skills." -og_art: /img/social/courses/gym-courses-og.png +og_art: /img/courses/og/gym-courses-og.png og_url: https://thegymnasium.com/courses --- diff --git a/courses/take5/meta.md b/courses/take5/meta.md index 483b08d5d..4fcce5ab8 100644 --- a/courses/take5/meta.md +++ b/courses/take5/meta.md @@ -3,7 +3,7 @@ layout: meta permalink: /courses/take5/meta/ page_title: "Take 5 | Gymnasium" og_description: "Learn new skills in 5 minutes for free." -og_art: /img/take5/og/gym-take5-og.png +og_art: /img/tutorials/og/gym-take5-og.png og_url: https://thegymnasium.com/courses/take5 css: [/css/take5.css] --- diff --git a/courses/workshops/course-list-recent.html b/courses/workshops/course-list-recent.html index f7f10d2cf..8e6cdb08b 100644 --- a/courses/workshops/course-list-recent.html +++ b/courses/workshops/course-list-recent.html @@ -41,8 +41,8 @@ {%- for item in recent -%} {%- assign course = site.data.courses[item] -%} - {%- assign png_path = "/img/course-artwork/png/" | append: course.id | downcase | append: ".png" -%} - {%- assign svg_path = "/img/course-artwork/svg/" | append: course.id | downcase | append: ".svg" -%} + {%- assign png_path = "/img/courses/" | append: course.id | downcase | append: ".png" -%} + {%- assign svg_path = "/img/courses/" | append: course.id | downcase | append: ".svg" -%}
  • diff --git a/css/heros/hero-gym-016.scss b/css/heros/hero-gym-016.scss index 58a1a8b97..d63e9cf4e 100644 --- a/css/heros/hero-gym-016.scss +++ b/css/heros/hero-gym-016.scss @@ -18,8 +18,8 @@ .hero-promo .artwork { height: 0; - background: $gym-magenta url("{{ site.url }}/img/course-artwork/png/gym-016.png")no-repeat center center; - background-image: url("{{ site.url }}/img/course-artwork/svg/gym-016.svg"), linear-gradient(transparent, 0, transparent); + background: $gym-magenta url("{{ site.url }}/img/courses/gym-016.png")no-repeat center center; + background-image: url("{{ site.url }}/img/courses/gym-016.svg"), linear-gradient(transparent, 0, transparent); background-size: contain; padding-bottom: 62.5%; margin: -15px -15px 0; diff --git a/css/heros/hero-take5-campaign.scss b/css/heros/hero-take5-campaign.scss index 42cdc550e..ec914591d 100644 --- a/css/heros/hero-take5-campaign.scss +++ b/css/heros/hero-take5-campaign.scss @@ -37,50 +37,50 @@ // animation: 60s ease-in-out infinite running slide-show; #slide-1 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5019.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5019.jpg?{{ site.time | date:'%s' }}"); animation-name: fade-1; } #slide-2 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5013.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5013.jpg?{{ site.time | date:'%s' }}"); animation-name: fade-2; } #slide-3 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5002.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5002.jpg?{{ site.time | date:'%s' }}"); animation-name: fade-3; } #slide-4 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5001.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5001.jpg?{{ site.time | date:'%s' }}"); animation-name: fade-4; } #slide-5 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5007.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5007.jpg?{{ site.time | date:'%s' }}"); animation-name: fade-5; } @include breakpoint(large, min) { #slide-1 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5019-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5019-hero.jpg?{{ site.time | date:'%s' }}"); } #slide-2 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5013-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5013-hero.jpg?{{ site.time | date:'%s' }}"); } #slide-3 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5002-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5002-hero.jpg?{{ site.time | date:'%s' }}"); } #slide-4 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5001-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5001-hero.jpg?{{ site.time | date:'%s' }}"); } #slide-5 { - background-image: url("{{ site.url }}/img/take5/posters/gym-5007-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5007-hero.jpg?{{ site.time | date:'%s' }}"); } } diff --git a/css/heros/hero-take5.scss b/css/heros/hero-take5.scss index 992b8e151..c3f4b5dc9 100644 --- a/css/heros/hero-take5.scss +++ b/css/heros/hero-take5.scss @@ -149,8 +149,8 @@ #hero-take5-design-basics { .hero-content-art { - background-image: url("{{ site.url }}/img/take5/posters/gym-5055-hero.jpg?{{ site.time | date:'%s' }}"); - border-image-source: url("{{ site.url }}/img/take5/posters/gym-5055-hero.jpg?{{ site.time | date:'%s' }}"); + background-image: url("{{ site.url }}/img/tutorials/gym-5055-hero.jpg?{{ site.time | date:'%s' }}"); + border-image-source: url("{{ site.url }}/img/tutorials/gym-5055-hero.jpg?{{ site.time | date:'%s' }}"); } } diff --git a/docs/README.md b/docs/README.md index 4783da6c4..6070670e2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,7 +6,7 @@ To create a new Take 5 tutorial, several files and assets need to be created and 1. Create the tutorial data file in `_data/take5/` 2. Create the stub files in `take5/` and `take5/meta/` -3. Add image assets to `img/take5/posters/` and `img/take5/og/` +3. Add image assets to `img/tutorials/` and `img/tutorials/og/` 4. Publish the Take 5 tutorial --- @@ -27,7 +27,7 @@ title: "Making a CSS Parallax Effect" # MUST be quoted date: 2019-10-28T00:00:00-04:00 # Publish date — MUST be in this format type: take5 # This is required url: /courses/take5/GYM-5001/ # Only change the course ID! -img: /img/take5/posters/gym-5001.jpg # Path to poster image (may be deprecated) +img: /img/tutorials/gym-5001.jpg # Path to poster image (may be deprecated) live: true # Only set to live when ready to publish! instructor: "Jeremy Osborn" # MUST be quoted topic: "Design & Development" # MUST be quoted @@ -62,7 +62,7 @@ title: date: 2019-11-15T00:00:00-04:00 type: take5 url: /courses/take5/GYM-5000/ -img: /img/take5/posters/gym-5000.jpg +img: /img/tutorials/gym-5000.jpg live: false instructor: topic: @@ -167,17 +167,17 @@ permalink: /courses/take5/gym-5001/meta/ ### OG Image -- **File location:** `img/take5/og/gym-5000-og.png` +- **File location:** `img/tutorials/og/gym-5000-og.png`
    View Sample -![img/take5/og/gym-5001-og.png](https://thegymcms.com/img/take5/og/gym-5001-og.png) +![img/tutorials/og/gym-5001-og.png](https://thegymcms.com/img/tutorials/og/gym-5001-og.png)
    ### Video Poster Image -- **File location:** `img/take5/posters/gym-5000.jpg` +- **File location:** `img/tutorials/gym-5000.jpg` - This is the poster frame image that is used in the following contexts: - Featured tutorial on the Take 5 catalog page - Thumbnails for other "Recent" Take 5s on the Take 5 catalog page @@ -187,18 +187,18 @@ permalink: /courses/take5/gym-5001/meta/
    View Sample -![img/take5/posters/gym-5001.png](https://thegymcms.com/img/take5/posters/gym-5001.jpg) +![img/tutorials/gym-5001.png](https://thegymcms.com/img/tutorials/gym-5001.jpg)
    ### Hero Poster Image -- **File location:** `img/take5/posters/gym-5000-hero.jpg` +- **File location:** `img/tutorials/gym-5000-hero.jpg` - This is the hero-sized version of the video poster image that is used when the specific tutorial is featured in the homepage hero component
    View Sample -![img/take5/posters/gym-5001-hero.png](https://thegymcms.com/img/take5/posters/gym-5001-hero.jpg) +![img/tutorials/gym-5001-hero.png](https://thegymcms.com/img/tutorials/gym-5001-hero.jpg)
    diff --git a/feeds/featured-courses.html b/feeds/featured-courses.html index f7fb251d3..2af70acbe 100644 --- a/feeds/featured-courses.html +++ b/feeds/featured-courses.html @@ -19,8 +19,8 @@ {%- assign artwork_png = site.data.courses[featured].id | downcase | append: '.png' -%} {%- assign artwork_svg = site.data.courses[featured].id | downcase | append: '.svg' -%} -{%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} -{%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} +{%- assign artwork_path_png = site.url | append: "/img/courses/"-%} +{%- assign artwork_path_svg = site.url | append: "/img/courses/"-%} {%- assign instructor = site.data.courses[featured].instructor -%} {%- assign instructor_name = site.data.bios[instructor].name -%} diff --git a/feeds/webinars.json b/feeds/webinars.json index 2e7638ba0..cb0c1f97f 100644 --- a/feeds/webinars.json +++ b/feeds/webinars.json @@ -42,8 +42,8 @@ permalink: /feeds/webinars.json "date": "{{ data.event_date }}", "description": "{{ data.description | strip_html }}", "host": "{{ data.host }}", - "event_ogimage": "/img/social/webinars/{{ data.event_ogimage }}", - "recording_ogimage": "/img/social/webinars/{{ data.recording_ogimage }}", + "event_ogimage": "/img/webinars/og/{{ data.event_ogimage }}", + "recording_ogimage": "/img/webinars/og/{{ data.recording_ogimage }}", "landing": {%- if data.landing -%}{{data.landing}}{%- else -%}false{%- endif -%}, "resources": {%- assign resources = data.resources | jsonify -%} diff --git a/hub-pages/accessibility/index.html b/hub-pages/accessibility/index.html index 839c83cf8..7d323418e 100644 --- a/hub-pages/accessibility/index.html +++ b/hub-pages/accessibility/index.html @@ -29,7 +29,7 @@

  • - Designing Accessible and Responsive Websites with Ethan Marcotte. + Designing Accessible and Responsive Websites with Ethan Marcotte.

    Designing Accessible and Responsive Websites

    diff --git a/hub-pages/career-skills/index.html b/hub-pages/career-skills/index.html index a400e2e3d..00ef30638 100644 --- a/hub-pages/career-skills/index.html +++ b/hub-pages/career-skills/index.html @@ -29,7 +29,7 @@

    Career Skills

    Courses

    - Design Systems for Everyone + Design Systems for Everyone

    Design Systems for Everyone

    @@ -50,7 +50,7 @@

    Design Systems for Everyone

    Tutorials

    - Making a Great First Impression with Your Portfolio + Making a Great First Impression with Your Portfolio

    Making a Great First Impression with Your Portfolio

    @@ -105,7 +105,7 @@

    Improving Your Portfolio is Easier Than You Think

    "@type": "Course", "name": "Defeating Busy", "description": "Learn how to estimate, plan, track, and manage your time in order to complete projects. Being busy isn’t a bad thing, but not being in control of your own time is.", - "image": "{{ site.url }}/img/social/courses/gym-001-social.png", + "image": "{{ site.url }}/img/courses/og/gym-001-og.png", "url": "https://thegymnasium.com/courses/GYM/001/0/about", "position": 1, "provider": { @@ -118,7 +118,7 @@

    Improving Your Portfolio is Easier Than You Think

    "@type": "Course", "name": "Design Systems for Everyone", "description": "Learn how to effectively integrate pattern libraries and design systems into your organization’s workflow. ", - "image": "{{ site.url }}/img/social/courses/gym-017-social.png", + "image": "{{ site.url }}/img/courses/og/gym-017-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+017+0/about", "position": 2, "provider": { @@ -139,7 +139,7 @@

    Courses

  • - Design Systems for Everyone + Design Systems for Everyone

    Design Systems for Everyone

    @@ -147,7 +147,7 @@

    Design
  • - Defeating Busy + Defeating Busy

    Defeating Busy

    @@ -174,7 +174,7 @@

    Tutorials

  • - Making a Great First Impression with Your Portfolio + Making a Great First Impression with Your Portfolio

    Making a Great First Impression with Your Portfolio

    @@ -184,7 +184,7 @@

    - Crafting a Concise About Page + Crafting a Concise About Page

    Crafting a Concise About Page

    @@ -194,7 +194,7 @@

    - Portfolio Case Studies to the Next Level + Portfolio Case Studies to the Next Level

    Taking Your Portfolio Case Studies to the Next Level

    @@ -204,7 +204,7 @@

    - Storytelling for Designers + Storytelling for Designers

    Storytelling for Designers

    @@ -214,7 +214,7 @@

  • - Crafting Your Story + Crafting Your Story

    Crafting Your Story

    @@ -224,7 +224,7 @@

    Craftin
  • - Knowing Your Audience + Knowing Your Audience

    Knowing Your Audience

    @@ -234,7 +234,7 @@

    Knowi
  • - Self-Promotion Through Your Online Presence + Self-Promotion Through Your Online Presence

    Self-Promotion Through Your Online Presence

    @@ -244,7 +244,7 @@

    - How to Tell the Story of a Mid-Career Pivot + How to Tell the Story of a Mid-Career Pivot

    How to Tell the Story of a Mid-Career Pivot

    @@ -254,7 +254,7 @@

    - Managing Your Time Like a Pro + Managing Your Time Like a Pro

    Managing Your Time Like a Pro

    diff --git a/hub-pages/design-systems/index.html b/hub-pages/design-systems/index.html index 6e15336a9..aa5254958 100644 --- a/hub-pages/design-systems/index.html +++ b/hub-pages/design-systems/index.html @@ -51,7 +51,7 @@

    - Design Systems for Designers + Design Systems for Designers

    @@ -99,7 +99,7 @@

    - Design Systems for Developers + Design Systems for Developers

    @@ -147,7 +147,7 @@

    - Design Systems for Product Managers + Design Systems for Product Managers

    @@ -195,7 +195,7 @@

  • - Design Systems for Everyone + Design Systems for Everyone

    diff --git a/hub-pages/prototyping/index.html b/hub-pages/prototyping/index.html index dfbe90efc..2db775795 100644 --- a/hub-pages/prototyping/index.html +++ b/hub-pages/prototyping/index.html @@ -27,7 +27,7 @@

    Prototyping

    Prototyping Courses

  • - Prototyping for Digital Products and Websites + Prototyping for Digital Products and Websites

    Prototyping for Digital Products and Websites

  • @@ -48,7 +48,7 @@

    Prototyping for Digital Products and

    Prototyping Tutorials

    - Prototyping in the Browser With CSS Grid Layout + Prototyping in the Browser With CSS Grid Layout

    Prototyping in the Browser With CSS Grid Layout

    @@ -69,7 +69,7 @@

    Prototyping in the Browser With CSS Grid Layout

    Prototyping Webinars

    - Design Systems and Prototypes slide from webinar. + Design Systems and Prototypes slide from webinar.

    UX Design: Prototyping as Process

    @@ -103,7 +103,7 @@

    UX Design: Prototyping as ProcessUX Design: Prototyping as ProcessUX Design: Prototyping as ProcessPrototyping Courses

  • - UX Fundamentals + UX Fundamentals

    UX Fundamentals

    @@ -158,7 +158,7 @@

    UX Fundamentals
    - Prototyping for Digital Products and Websites + Prototyping for Digital Products and Websites

    Prototyping for Digital Products and Websites

    @@ -185,7 +185,7 @@

    Prototyping Tutorials

  • - Using Smart Layout in Sketch + Using Smart Layout in Sketch

    Using Smart Layout in Sketch

    @@ -195,7 +195,7 @@

    - Prototyping in the Browser With CSS Grid Layout + Prototyping in the Browser With CSS Grid Layout

    Prototyping in the Browser With CSS Grid Layout

    @@ -205,7 +205,7 @@

    - >Working With the Timeline in Invision Studio + >Working With the Timeline in Invision Studio

    Working With the Timeline in Invision Studio

    @@ -215,7 +215,7 @@

    - Using Auto-Animate in Adobe XD + Using Auto-Animate in Adobe XD

    Using Auto-Animate in Adobe XD

    @@ -225,7 +225,7 @@

    - Creating Advanced Animations in Figma + Creating Advanced Animations in Figma

    Creating Advanced Animations in Figma

    @@ -255,7 +255,7 @@

    Prototyping Webinars

    - UX Design: Prototyping as Process with Dave Rupert and James Young + UX Design: Prototyping as Process with Dave Rupert and James Young
    @@ -267,7 +267,7 @@

    UX Design
    - Planning Before Pixels with Jen Kramer and Heather O’Neill + Planning Before Pixels with Jen Kramer and Heather O’Neill
    @@ -279,7 +279,7 @@

    Planning
    - Right-Sizing Your Rapid Prototypes for Web & Mobile with Erin Young and Tracy Singleton + Right-Sizing Your Rapid Prototypes for Web & Mobile with Erin Young and Tracy Singleton
    @@ -291,7 +291,7 @@

    - Designing for Real People with Eric Meyer and Jim Webb + Designing for Real People with Eric Meyer and Jim Webb
    @@ -303,7 +303,7 @@

    Design
    - Designing for Understanding with Stephanie Hay and John Hodgins + Designing for Understanding with Stephanie Hay and John Hodgins
    diff --git a/hub-pages/remote-work/index.html b/hub-pages/remote-work/index.html index 72ad90ff1..7a1785087 100644 --- a/hub-pages/remote-work/index.html +++ b/hub-pages/remote-work/index.html @@ -64,7 +64,7 @@

    Remote Work That Best Fits Your Skills

    Free Webinar

    - Begin your journey by watching our Remote Work webinar with industry experts Richard Banfield and Darren Buckner. + Begin your journey by watching our Remote Work webinar with industry experts Richard Banfield and Darren Buckner.

    Remote Work: Can It Work for You?

  • diff --git a/hub-pages/ux-design/index.html b/hub-pages/ux-design/index.html index d38675520..3f08ff992 100644 --- a/hub-pages/ux-design/index.html +++ b/hub-pages/ux-design/index.html @@ -28,7 +28,7 @@

    UX Design

    UX Courses

    - Prototyping for Digital Products + Prototyping for Digital Products

    Prototyping for Digital Products and Websites

    @@ -49,7 +49,7 @@

    Prototyping for Digital Products and

    UX Tutorials

    - Writing Effective Survey Questions + Writing Effective Survey Questions

    Writing Effective Survey Questions

    @@ -70,7 +70,7 @@

    Writing Effective Survey Questions

    Web Development Webinars

    - Responsive web design was a rare event that changed how people browsed the web as well as how designers built websites, slide from webinar. + Responsive web design was a rare event that changed how people browsed the web as well as how designers built websites, slide from webinar.

    A Decade of Responsive Web Design

    @@ -123,7 +123,7 @@

    From Filler to Matter: Wireframes and Prototypes in From Filler to Matter: Wireframes and Prototypes in From Filler to Matter: Wireframes and Prototypes in UX Courses

  • - UX Fundamentals + UX Fundamentals

    UX Fundamentals

    @@ -178,7 +178,7 @@

    UX Fundamentals
    - Working with Atomic Design and Pattern Lab with Brad Frost + Working with Atomic Design and Pattern Lab with Brad Frost

    Working with Atomic Design and Pattern Lab

    @@ -186,7 +186,7 @@

    Working
  • - Prototyping for Digital Products and Websites + Prototyping for Digital Products and Websites

    Prototyping for Digital Products and Websites

    @@ -213,7 +213,7 @@

    UX Tutorials

  • - Leading a Card Sorting Session + Leading a Card Sorting Session

    Leading a Card Sorting Session

    @@ -223,7 +223,7 @@

    - Conducting Customer Interviews + Conducting Customer Interviews

    Conducting Customer Interviews

    @@ -233,7 +233,7 @@

    - Writing Effective Survey Questions + Writing Effective Survey Questions

    Writing Effective Survey Questions

    @@ -243,7 +243,7 @@

    - Leading Your First Usability Test + Leading Your First Usability Test

    Leading Your First Usability Test

    @@ -253,7 +253,7 @@

    - Using the KJ Method + Using the KJ Method

    Using the KJ Method

    @@ -283,7 +283,7 @@

    UX Webinars

    - A Decade of Responsive Web Design with Ethan Marcotte + A Decade of Responsive Web Design with Ethan Marcotte
    @@ -295,7 +295,7 @@

    - UX Design: Prototyping as Process with Dave Rupert and James Young + UX Design: Prototyping as Process with Dave Rupert and James Young
    @@ -307,7 +307,7 @@

    UX Design
    - Planning Before Pixels with Jen Kramer and Heather O’Neill + Planning Before Pixels with Jen Kramer and Heather O’Neill
    @@ -319,7 +319,7 @@

    Planning
    - Right-Sizing Your Rapid Prototypes for Web & Mobile with Erin Young and Tracy Singleton + Right-Sizing Your Rapid Prototypes for Web & Mobile with Erin Young and Tracy Singleton
    @@ -331,7 +331,7 @@

    - Designing for Real People with Eric Meyer and Jim Webb + Designing for Real People with Eric Meyer and Jim Webb
    @@ -343,7 +343,7 @@

    Design
    - Designing for Understanding with Stephanie Hay and John Hodgins + Designing for Understanding with Stephanie Hay and John Hodgins
    diff --git a/hub-pages/web-development/index.html b/hub-pages/web-development/index.html index 5f3fdfa56..cdc9acc16 100644 --- a/hub-pages/web-development/index.html +++ b/hub-pages/web-development/index.html @@ -27,7 +27,7 @@

    Web Development

    Web Development Courses

    - Designing Accessible and Responsive Websites + Designing Accessible and Responsive Websites

    Designing Accessible and Responsive Websites

  • @@ -48,7 +48,7 @@

    Designing Accessible and Responsive Websites

    Web Development Tutorials

    - Creating a Duotone With CSS + Creating a Duotone With CSS

    Creating a Duotone With CSS

    @@ -69,7 +69,7 @@

    Creating a Duotone With CSS

    Web Development Webinars

    - Responsive web design was a rare event that changed how people browsed the web as well as how designers built websites, slide from webinar. + Responsive web design was a rare event that changed how people browsed the web as well as how designers built websites, slide from webinar.

    A Decade of Responsive Web Design

    @@ -103,7 +103,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Modern Web Design", "description": "This course will prepare you to be a front-end developer by walking you through the process of building a simple, responsive website using HTML, CSS and JavaScript.", - "image": "{{ site.url }}/img/social/courses/gym-107-social.png", + "image": "{{ site.url }}/img/courses/og/gym-107-og.png", "url": "https://thegymnasium.com/courses/GYM/107/0/about", "position": 1, "provider": { @@ -116,7 +116,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Responsive Web Design Fundamentals", "description": "This is a hands-on, code-intensive course on how to build high-performance, responsive websites that look great across multiple screen sizes and devices.", - "image": "{{ site.url }}/img/social/courses/gym-109-social.png", + "image": "{{ site.url }}/img/courses/og/gym-109-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+109+0/about", "position": 2, "provider": { @@ -129,7 +129,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Designing Accessible and Responsive Websites", "description": "Learn accessible and responsive design best practices to help make a more user-friendly web for everyone.", - "image": "{{ site.url }}/img/social/courses/gym-016-social.png", + "image": "{{ site.url }}/img/courses/og/gym-016-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+016+0/about", "position": 3, "provider": { @@ -142,7 +142,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Build Better Websites With Chrome Developer Tools", "description": "Learn how to use the built-in developer tools within the Chrome browser. Understanding how to use these tools will speed up your development time and help you create bug-free, high-performing pages and web applications..", - "image": "{{ site.url }}/img/social/courses/gym-011-social.png", + "image": "{{ site.url }}/img/courses/og/gym-011-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+011+0/about", "position": 4, "provider": { @@ -155,7 +155,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Structuring and Organizing HTML5 Forms", "description": "Learn some of the latest standards and thinking around coding HTML forms using the new HTML5 tags and attributes.", - "image": "{{ site.url }}/img/social/courses/gym-007-social.png", + "image": "{{ site.url }}/img/courses/og/gym-007-og.png", "url": "https://thegymnasium.com/courses/GYM/007/0/about", "position": 5, "provider": { @@ -168,7 +168,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Creating a WordPress Theme", "description": "Learn how to convert your HTML/CSS design into a WordPress website. Discover how to set up a local development environment, and add WordPress tags to your design.", - "image": "{{ site.url }}/img/social/courses/gym-004-social.png", + "image": "{{ site.url }}/img/courses/og/gym-004-og.png", "url": "https://thegymnasium.com/courses/GYM/004/0/about", "position": 6, "provider": { @@ -181,7 +181,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Creating a Drupal 8 Theme", "description": "Learn how to create themes for Drupal 8. Specifically, you will learn how to install a local development environment for Drupal 8, and use the new TWIG templating engine to customize the structure and style of your theme.", - "image": "{{ site.url }}/img/social/courses/gym-009-social.png", + "image": "{{ site.url }}/img/courses/og/gym-009-og.png", "url": "https://thegymnasium.com/courses/GYM/009/0/about", "position": 7, "provider": { @@ -194,7 +194,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "JavaScript Foundations", "description": "Learn the fundamentals of programming with JavaScript and get started on the road to its mastery.", - "image": "{{ site.url }}/img/social/courses/gym-104-social.png", + "image": "{{ site.url }}/img/courses/og/gym-104-og.png", "url": "https://thegymnasium.com/courses/GYM/104/0/about", "position": 8, "provider": { @@ -207,7 +207,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "JavaScript and jQuery Survival Guide", "description": "Learn how to tackle real-world projects that require the use of jQuery and JavaScript by walking you through a number of exercises and coding examples.", - "image": "{{ site.url }}/img/social/courses/gym-108-social.png", + "image": "{{ site.url }}/img/courses/og/gym-108-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+108+0/about", "position": 9, "provider": { @@ -220,7 +220,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Introduction to Node.js", "description": "Learn how to build a simple web app using Node.js.", - "image": "{{ site.url }}/img/social/courses/gym-012-social.png", + "image": "{{ site.url }}/img/courses/og/gym-012-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+012+0/about", "position": 10, "provider": { @@ -233,7 +233,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Introduction to Git and GitHub", "description": "Learn the basics of version control and get a high-level overview of both Git and GitHub. Perfect for someone with little to no first-hand experience with either.", - "image": "{{ site.url }}/img/social/courses/gym-006-social.png", + "image": "{{ site.url }}/img/courses/og/gym-006-og.png", "url": "https://thegymnasium.com/courses/GYM/006/0/about", "position": 11, "provider": { @@ -246,7 +246,7 @@

    A Decade of Responsive Web Design

    "@type": "Course", "name": "Working with Atomic Design and Pattern Lab", "description": "Learn how to use Atomic Design methodology within Pattern Lab in order to create reusable user interface components.", - "image": "{{ site.url }}/img/social/courses/gym-014-social.png", + "image": "{{ site.url }}/img/courses/og/gym-014-og.png", "url": "https://thegymnasium.com/courses/course-v1:GYM+014+0/about", "position": 12, "provider": { @@ -267,7 +267,7 @@

    Web Development Courses

  • - Modern Web Design with Aaron Gustafson of Microsoft + Modern Web Design with Aaron Gustafson of Microsoft

    Modern Web Design

    @@ -275,7 +275,7 @@

    Modern Web Design
  • - Responsive Web Design Fundamentals with Jason Pamental + Responsive Web Design Fundamentals with Jason Pamental

    Responsive Web Design Fundamentals

    @@ -283,7 +283,7 @@

    Respons
  • - Designing Accessible and Responsive Websites + Designing Accessible and Responsive Websites

    Designing Accessible and Responsive Websites

    @@ -291,7 +291,7 @@

    Designi
  • - Build Better Websites With Chrome Developer Tools + Build Better Websites With Chrome Developer Tools

    Build Better Websites With Chrome Developer Tools

    @@ -299,7 +299,7 @@

    Build B
  • - Structuring and Organizing HTML5 Forms + Structuring and Organizing HTML5 Forms

    Structuring and Organizing HTML5 Forms

    @@ -307,7 +307,7 @@

    Structuring and O
  • - Creating a WordPress Theme + Creating a WordPress Theme

    Creating a WordPress Theme

    @@ -315,7 +315,7 @@

    Creating a WordPr
  • - Creating a Drupal 8 Theme + Creating a Drupal 8 Theme

    Creating a Drupal 8 Theme

    @@ -323,7 +323,7 @@

    Creating a Drupal
  • - JavaScript Foundations + JavaScript Foundations

    JavaScript Foundations

    @@ -331,7 +331,7 @@

    JavaScript Founda
  • - JavaScript and jQuery Survival Guide + JavaScript and jQuery Survival Guide

    JavaScript and jQuery Survival Guide

    @@ -339,7 +339,7 @@

    JavaScr
  • - >Introduction to Node.js + >Introduction to Node.js

    Introduction to Node.js

    @@ -347,7 +347,7 @@

    Introdu
  • - Introduction to Git and GitHub + Introduction to Git and GitHub

    Introduction to Git and GitHub

    @@ -355,7 +355,7 @@

    Introduction to G
  • - Working with Atomic Design and Pattern Lab with Brad Frost + Working with Atomic Design and Pattern Lab with Brad Frost

    Working with Atomic Design and Pattern Lab

    @@ -382,7 +382,7 @@

    Web Development Tutorials

  • - Making a CSS Parallax Effect + Making a CSS Parallax Effect

    Making a CSS Parallax Effect

    @@ -392,7 +392,7 @@

    - Creating a CSS Knockout Text Effect + Creating a CSS Knockout Text Effect

    Creating a CSS Knockout Text Effect

    @@ -402,7 +402,7 @@

    - Adding a CSS Gradient Overlay to an Image + Adding a CSS Gradient Overlay to an Image

    Adding a CSS Gradient Overlay to an Image

    @@ -412,7 +412,7 @@

    - Working With CSS Feature Queries + Working With CSS Feature Queries

    Working With CSS Feature Queries

    @@ -422,7 +422,7 @@

    - Creating a Duotone With CSS + Creating a Duotone With CSS

    Creating a Duotone With CSS

    @@ -432,7 +432,7 @@

    - Using CSS Generated Content for Links + Using CSS Generated Content for Links

    Using CSS Generated Content for Links

    @@ -462,7 +462,7 @@

    Web Development Webinars

    - A Decade of Responsive Web Design with Ethan Marcotte + A Decade of Responsive Web Design with Ethan Marcotte
    @@ -474,7 +474,7 @@

    - UX Design: Prototyping as Process with Dave Rupert and James Young + UX Design: Prototyping as Process with Dave Rupert and James Young
    @@ -486,7 +486,7 @@

    UX Design
    - Planning Before Pixels with Jen Kramer and Heather O’Neill + Planning Before Pixels with Jen Kramer and Heather O’Neill
    @@ -498,7 +498,7 @@

    Planning
    - The Future of Layout with Rachel Andrew and Jason Pamental + The Future of Layout with Rachel Andrew and Jason Pamental
    @@ -510,7 +510,7 @@

    The Future
    - Rethinking Full Stack: Cost and Compromise with Eric Meyer and Dan Mall + Rethinking Full Stack: Cost and Compromise with Eric Meyer and Dan Mall
    @@ -522,7 +522,7 @@

    Rethinking
    - Design Systems and Creativity: Unlikely Allies with Brad Frost and Sophie Shepherd + Design Systems and Creativity: Unlikely Allies with Brad Frost and Sophie Shepherd
    @@ -534,7 +534,7 @@

    De
    - Keeping Up with JavaScript is a Full-time Job with Kevin Chisholm and Keith Peters + Keeping Up with JavaScript is a Full-time Job with Kevin Chisholm and Keith Peters
    @@ -546,7 +546,7 @@

    Keepi
    - The State of Responsive Design with Ethan Marcotte and Karen McGrane + The State of Responsive Design with Ethan Marcotte and Karen McGrane
    @@ -558,7 +558,7 @@

    T
    - Web Design is Hard with Jeffrey Zeldman and Aaron Gustafson + Web Design is Hard with Jeffrey Zeldman and Aaron Gustafson
    diff --git a/img/course-artwork/png/gym-000.png b/img/courses/gym-000.png similarity index 100% rename from img/course-artwork/png/gym-000.png rename to img/courses/gym-000.png diff --git a/img/course-artwork/svg/gym-000.svg b/img/courses/gym-000.svg similarity index 100% rename from img/course-artwork/svg/gym-000.svg rename to img/courses/gym-000.svg diff --git a/img/course-artwork/png/gym-001.png b/img/courses/gym-001.png similarity index 100% rename from img/course-artwork/png/gym-001.png rename to img/courses/gym-001.png diff --git a/img/course-artwork/svg/gym-001.svg b/img/courses/gym-001.svg similarity index 100% rename from img/course-artwork/svg/gym-001.svg rename to img/courses/gym-001.svg diff --git a/img/course-artwork/png/gym-002.png b/img/courses/gym-002.png similarity index 100% rename from img/course-artwork/png/gym-002.png rename to img/courses/gym-002.png diff --git a/img/course-artwork/svg/gym-002.svg b/img/courses/gym-002.svg similarity index 100% rename from img/course-artwork/svg/gym-002.svg rename to img/courses/gym-002.svg diff --git a/img/course-artwork/png/gym-003.png b/img/courses/gym-003.png similarity index 100% rename from img/course-artwork/png/gym-003.png rename to img/courses/gym-003.png diff --git a/img/course-artwork/svg/gym-003.svg b/img/courses/gym-003.svg similarity index 100% rename from img/course-artwork/svg/gym-003.svg rename to img/courses/gym-003.svg diff --git a/img/course-artwork/png/gym-004.png b/img/courses/gym-004.png similarity index 100% rename from img/course-artwork/png/gym-004.png rename to img/courses/gym-004.png diff --git a/img/course-artwork/svg/gym-004.svg b/img/courses/gym-004.svg similarity index 100% rename from img/course-artwork/svg/gym-004.svg rename to img/courses/gym-004.svg diff --git a/img/course-artwork/png/gym-005.png b/img/courses/gym-005.png similarity index 100% rename from img/course-artwork/png/gym-005.png rename to img/courses/gym-005.png diff --git a/img/course-artwork/svg/gym-005.svg b/img/courses/gym-005.svg similarity index 100% rename from img/course-artwork/svg/gym-005.svg rename to img/courses/gym-005.svg diff --git a/img/course-artwork/png/gym-006.png b/img/courses/gym-006.png similarity index 100% rename from img/course-artwork/png/gym-006.png rename to img/courses/gym-006.png diff --git a/img/course-artwork/svg/gym-006.svg b/img/courses/gym-006.svg similarity index 100% rename from img/course-artwork/svg/gym-006.svg rename to img/courses/gym-006.svg diff --git a/img/course-artwork/png/gym-007.png b/img/courses/gym-007.png similarity index 100% rename from img/course-artwork/png/gym-007.png rename to img/courses/gym-007.png diff --git a/img/course-artwork/svg/gym-007.svg b/img/courses/gym-007.svg similarity index 100% rename from img/course-artwork/svg/gym-007.svg rename to img/courses/gym-007.svg diff --git a/img/course-artwork/png/gym-008.png b/img/courses/gym-008.png similarity index 100% rename from img/course-artwork/png/gym-008.png rename to img/courses/gym-008.png diff --git a/img/course-artwork/svg/gym-008.svg b/img/courses/gym-008.svg similarity index 100% rename from img/course-artwork/svg/gym-008.svg rename to img/courses/gym-008.svg diff --git a/img/course-artwork/png/gym-009.png b/img/courses/gym-009.png similarity index 100% rename from img/course-artwork/png/gym-009.png rename to img/courses/gym-009.png diff --git a/img/course-artwork/svg/gym-009.svg b/img/courses/gym-009.svg similarity index 100% rename from img/course-artwork/svg/gym-009.svg rename to img/courses/gym-009.svg diff --git a/img/course-artwork/png/gym-011.png b/img/courses/gym-011.png similarity index 100% rename from img/course-artwork/png/gym-011.png rename to img/courses/gym-011.png diff --git a/img/course-artwork/svg/gym-011.svg b/img/courses/gym-011.svg similarity index 100% rename from img/course-artwork/svg/gym-011.svg rename to img/courses/gym-011.svg diff --git a/img/course-artwork/png/gym-012.png b/img/courses/gym-012.png similarity index 100% rename from img/course-artwork/png/gym-012.png rename to img/courses/gym-012.png diff --git a/img/course-artwork/svg/gym-012.svg b/img/courses/gym-012.svg similarity index 100% rename from img/course-artwork/svg/gym-012.svg rename to img/courses/gym-012.svg diff --git a/img/course-artwork/png/gym-013.png b/img/courses/gym-013.png similarity index 100% rename from img/course-artwork/png/gym-013.png rename to img/courses/gym-013.png diff --git a/img/course-artwork/svg/gym-013.svg b/img/courses/gym-013.svg similarity index 100% rename from img/course-artwork/svg/gym-013.svg rename to img/courses/gym-013.svg diff --git a/img/course-artwork/png/gym-014.png b/img/courses/gym-014.png similarity index 100% rename from img/course-artwork/png/gym-014.png rename to img/courses/gym-014.png diff --git a/img/course-artwork/svg/gym-014.svg b/img/courses/gym-014.svg similarity index 100% rename from img/course-artwork/svg/gym-014.svg rename to img/courses/gym-014.svg diff --git a/img/course-artwork/png/gym-015.png b/img/courses/gym-015.png similarity index 100% rename from img/course-artwork/png/gym-015.png rename to img/courses/gym-015.png diff --git a/img/course-artwork/svg/gym-015.svg b/img/courses/gym-015.svg similarity index 100% rename from img/course-artwork/svg/gym-015.svg rename to img/courses/gym-015.svg diff --git a/img/course-artwork/png/gym-016.png b/img/courses/gym-016.png similarity index 100% rename from img/course-artwork/png/gym-016.png rename to img/courses/gym-016.png diff --git a/img/course-artwork/svg/gym-016.svg b/img/courses/gym-016.svg similarity index 100% rename from img/course-artwork/svg/gym-016.svg rename to img/courses/gym-016.svg diff --git a/img/course-artwork/png/gym-017.png b/img/courses/gym-017.png similarity index 100% rename from img/course-artwork/png/gym-017.png rename to img/courses/gym-017.png diff --git a/img/course-artwork/svg/gym-017.svg b/img/courses/gym-017.svg similarity index 100% rename from img/course-artwork/svg/gym-017.svg rename to img/courses/gym-017.svg diff --git a/img/course-artwork/png/gym-018.png b/img/courses/gym-018.png similarity index 100% rename from img/course-artwork/png/gym-018.png rename to img/courses/gym-018.png diff --git a/img/course-artwork/svg/gym-018.svg b/img/courses/gym-018.svg similarity index 100% rename from img/course-artwork/svg/gym-018.svg rename to img/courses/gym-018.svg diff --git a/img/course-artwork/png/gym-019.png b/img/courses/gym-019.png similarity index 100% rename from img/course-artwork/png/gym-019.png rename to img/courses/gym-019.png diff --git a/img/course-artwork/svg/gym-019.svg b/img/courses/gym-019.svg similarity index 100% rename from img/course-artwork/svg/gym-019.svg rename to img/courses/gym-019.svg diff --git a/img/course-artwork/png/gym-020.png b/img/courses/gym-020.png similarity index 100% rename from img/course-artwork/png/gym-020.png rename to img/courses/gym-020.png diff --git a/img/course-artwork/svg/gym-020.svg b/img/courses/gym-020.svg similarity index 100% rename from img/course-artwork/svg/gym-020.svg rename to img/courses/gym-020.svg diff --git a/img/course-artwork/png/gym-100.png b/img/courses/gym-100.png similarity index 100% rename from img/course-artwork/png/gym-100.png rename to img/courses/gym-100.png diff --git a/img/course-artwork/svg/gym-100.svg b/img/courses/gym-100.svg similarity index 100% rename from img/course-artwork/svg/gym-100.svg rename to img/courses/gym-100.svg diff --git a/img/course-artwork/png/gym-101.png b/img/courses/gym-101.png similarity index 100% rename from img/course-artwork/png/gym-101.png rename to img/courses/gym-101.png diff --git a/img/course-artwork/svg/gym-101.svg b/img/courses/gym-101.svg similarity index 100% rename from img/course-artwork/svg/gym-101.svg rename to img/courses/gym-101.svg diff --git a/img/course-artwork/png/gym-102.png b/img/courses/gym-102.png similarity index 100% rename from img/course-artwork/png/gym-102.png rename to img/courses/gym-102.png diff --git a/img/course-artwork/svg/gym-102.svg b/img/courses/gym-102.svg similarity index 100% rename from img/course-artwork/svg/gym-102.svg rename to img/courses/gym-102.svg diff --git a/img/course-artwork/png/gym-103.png b/img/courses/gym-103.png similarity index 100% rename from img/course-artwork/png/gym-103.png rename to img/courses/gym-103.png diff --git a/img/course-artwork/svg/gym-103.svg b/img/courses/gym-103.svg similarity index 100% rename from img/course-artwork/svg/gym-103.svg rename to img/courses/gym-103.svg diff --git a/img/course-artwork/png/gym-104.png b/img/courses/gym-104.png similarity index 100% rename from img/course-artwork/png/gym-104.png rename to img/courses/gym-104.png diff --git a/img/course-artwork/svg/gym-104.svg b/img/courses/gym-104.svg similarity index 100% rename from img/course-artwork/svg/gym-104.svg rename to img/courses/gym-104.svg diff --git a/img/course-artwork/png/gym-105.png b/img/courses/gym-105.png similarity index 100% rename from img/course-artwork/png/gym-105.png rename to img/courses/gym-105.png diff --git a/img/course-artwork/svg/gym-105.svg b/img/courses/gym-105.svg similarity index 100% rename from img/course-artwork/svg/gym-105.svg rename to img/courses/gym-105.svg diff --git a/img/course-artwork/png/gym-106.png b/img/courses/gym-106.png similarity index 100% rename from img/course-artwork/png/gym-106.png rename to img/courses/gym-106.png diff --git a/img/course-artwork/svg/gym-106.svg b/img/courses/gym-106.svg similarity index 100% rename from img/course-artwork/svg/gym-106.svg rename to img/courses/gym-106.svg diff --git a/img/course-artwork/png/gym-107.png b/img/courses/gym-107.png similarity index 100% rename from img/course-artwork/png/gym-107.png rename to img/courses/gym-107.png diff --git a/img/course-artwork/svg/gym-107.svg b/img/courses/gym-107.svg similarity index 100% rename from img/course-artwork/svg/gym-107.svg rename to img/courses/gym-107.svg diff --git a/img/course-artwork/png/gym-108.png b/img/courses/gym-108.png similarity index 100% rename from img/course-artwork/png/gym-108.png rename to img/courses/gym-108.png diff --git a/img/course-artwork/svg/gym-108.svg b/img/courses/gym-108.svg similarity index 100% rename from img/course-artwork/svg/gym-108.svg rename to img/courses/gym-108.svg diff --git a/img/course-artwork/png/gym-109.png b/img/courses/gym-109.png similarity index 100% rename from img/course-artwork/png/gym-109.png rename to img/courses/gym-109.png diff --git a/img/course-artwork/svg/gym-109.svg b/img/courses/gym-109.svg similarity index 100% rename from img/course-artwork/svg/gym-109.svg rename to img/courses/gym-109.svg diff --git a/img/course-artwork/png/gym-700.png b/img/courses/gym-700.png similarity index 100% rename from img/course-artwork/png/gym-700.png rename to img/courses/gym-700.png diff --git a/img/course-artwork/svg/gym-700.svg b/img/courses/gym-700.svg similarity index 100% rename from img/course-artwork/svg/gym-700.svg rename to img/courses/gym-700.svg diff --git a/img/social/courses/gym-001-social.png b/img/courses/og/gym-001-og.png similarity index 100% rename from img/social/courses/gym-001-social.png rename to img/courses/og/gym-001-og.png diff --git a/img/social/courses/gym-002-social.png b/img/courses/og/gym-002-og.png similarity index 100% rename from img/social/courses/gym-002-social.png rename to img/courses/og/gym-002-og.png diff --git a/img/social/courses/gym-003-social.png b/img/courses/og/gym-003-og.png similarity index 100% rename from img/social/courses/gym-003-social.png rename to img/courses/og/gym-003-og.png diff --git a/img/social/courses/gym-004-social.png b/img/courses/og/gym-004-og.png similarity index 100% rename from img/social/courses/gym-004-social.png rename to img/courses/og/gym-004-og.png diff --git a/img/social/courses/gym-005-social.png b/img/courses/og/gym-005-og.png similarity index 100% rename from img/social/courses/gym-005-social.png rename to img/courses/og/gym-005-og.png diff --git a/img/social/courses/gym-006-social.png b/img/courses/og/gym-006-og.png similarity index 100% rename from img/social/courses/gym-006-social.png rename to img/courses/og/gym-006-og.png diff --git a/img/social/courses/gym-007-social.png b/img/courses/og/gym-007-og.png similarity index 100% rename from img/social/courses/gym-007-social.png rename to img/courses/og/gym-007-og.png diff --git a/img/social/courses/gym-008-social.png b/img/courses/og/gym-008-og.png similarity index 100% rename from img/social/courses/gym-008-social.png rename to img/courses/og/gym-008-og.png diff --git a/img/social/courses/gym-009-social.png b/img/courses/og/gym-009-og.png similarity index 100% rename from img/social/courses/gym-009-social.png rename to img/courses/og/gym-009-og.png diff --git a/img/social/courses/gym-011-social.png b/img/courses/og/gym-011-og.png similarity index 100% rename from img/social/courses/gym-011-social.png rename to img/courses/og/gym-011-og.png diff --git a/img/social/courses/gym-012-social.png b/img/courses/og/gym-012-og.png similarity index 100% rename from img/social/courses/gym-012-social.png rename to img/courses/og/gym-012-og.png diff --git a/img/social/courses/gym-013-social.png b/img/courses/og/gym-013-og.png similarity index 100% rename from img/social/courses/gym-013-social.png rename to img/courses/og/gym-013-og.png diff --git a/img/social/courses/gym-014-social.png b/img/courses/og/gym-014-og.png similarity index 100% rename from img/social/courses/gym-014-social.png rename to img/courses/og/gym-014-og.png diff --git a/img/social/courses/gym-015-social.png b/img/courses/og/gym-015-og.png similarity index 100% rename from img/social/courses/gym-015-social.png rename to img/courses/og/gym-015-og.png diff --git a/img/social/courses/gym-016-social.png b/img/courses/og/gym-016-og.png similarity index 100% rename from img/social/courses/gym-016-social.png rename to img/courses/og/gym-016-og.png diff --git a/img/social/courses/gym-017-social.png b/img/courses/og/gym-017-og.png similarity index 100% rename from img/social/courses/gym-017-social.png rename to img/courses/og/gym-017-og.png diff --git a/img/social/courses/gym-018-social.png b/img/courses/og/gym-018-og.png similarity index 100% rename from img/social/courses/gym-018-social.png rename to img/courses/og/gym-018-og.png diff --git a/img/social/courses/gym-019-social.png b/img/courses/og/gym-019-og.png similarity index 100% rename from img/social/courses/gym-019-social.png rename to img/courses/og/gym-019-og.png diff --git a/img/social/courses/gym-020-social.png b/img/courses/og/gym-020-og.png similarity index 100% rename from img/social/courses/gym-020-social.png rename to img/courses/og/gym-020-og.png diff --git a/img/social/courses/gym-100-social.png b/img/courses/og/gym-100-og.png similarity index 100% rename from img/social/courses/gym-100-social.png rename to img/courses/og/gym-100-og.png diff --git a/img/social/courses/gym-101-social.png b/img/courses/og/gym-101-og.png similarity index 100% rename from img/social/courses/gym-101-social.png rename to img/courses/og/gym-101-og.png diff --git a/img/social/courses/gym-102-social.png b/img/courses/og/gym-102-og.png similarity index 100% rename from img/social/courses/gym-102-social.png rename to img/courses/og/gym-102-og.png diff --git a/img/social/courses/gym-103-social.png b/img/courses/og/gym-103-og.png similarity index 100% rename from img/social/courses/gym-103-social.png rename to img/courses/og/gym-103-og.png diff --git a/img/social/courses/gym-104-social.png b/img/courses/og/gym-104-og.png similarity index 100% rename from img/social/courses/gym-104-social.png rename to img/courses/og/gym-104-og.png diff --git a/img/social/courses/gym-105-social.png b/img/courses/og/gym-105-og.png similarity index 100% rename from img/social/courses/gym-105-social.png rename to img/courses/og/gym-105-og.png diff --git a/img/social/courses/gym-106-social.png b/img/courses/og/gym-106-og.png similarity index 100% rename from img/social/courses/gym-106-social.png rename to img/courses/og/gym-106-og.png diff --git a/img/social/courses/gym-107-social.png b/img/courses/og/gym-107-og.png similarity index 100% rename from img/social/courses/gym-107-social.png rename to img/courses/og/gym-107-og.png diff --git a/img/social/courses/gym-108-social.png b/img/courses/og/gym-108-og.png similarity index 100% rename from img/social/courses/gym-108-social.png rename to img/courses/og/gym-108-og.png diff --git a/img/social/courses/gym-109-social.png b/img/courses/og/gym-109-og.png similarity index 100% rename from img/social/courses/gym-109-social.png rename to img/courses/og/gym-109-og.png diff --git a/img/social/courses/gym-700-social.png b/img/courses/og/gym-700-og.png similarity index 100% rename from img/social/courses/gym-700-social.png rename to img/courses/og/gym-700-og.png diff --git a/img/social/courses/gym-courses-og.png b/img/courses/og/gym-courses-og.png similarity index 100% rename from img/social/courses/gym-courses-og.png rename to img/courses/og/gym-courses-og.png diff --git a/img/take5/posters/gym-5001-hero.jpg b/img/tutorials/gym-5001-hero.jpg similarity index 100% rename from img/take5/posters/gym-5001-hero.jpg rename to img/tutorials/gym-5001-hero.jpg diff --git a/img/take5/posters/gym-5001.jpg b/img/tutorials/gym-5001.jpg similarity index 100% rename from img/take5/posters/gym-5001.jpg rename to img/tutorials/gym-5001.jpg diff --git a/img/take5/posters/gym-5002-hero.jpg b/img/tutorials/gym-5002-hero.jpg similarity index 100% rename from img/take5/posters/gym-5002-hero.jpg rename to img/tutorials/gym-5002-hero.jpg diff --git a/img/take5/posters/gym-5002.jpg b/img/tutorials/gym-5002.jpg similarity index 100% rename from img/take5/posters/gym-5002.jpg rename to img/tutorials/gym-5002.jpg diff --git a/img/take5/posters/gym-5003-hero.jpg b/img/tutorials/gym-5003-hero.jpg similarity index 100% rename from img/take5/posters/gym-5003-hero.jpg rename to img/tutorials/gym-5003-hero.jpg diff --git a/img/take5/posters/gym-5003.jpg b/img/tutorials/gym-5003.jpg similarity index 100% rename from img/take5/posters/gym-5003.jpg rename to img/tutorials/gym-5003.jpg diff --git a/img/take5/posters/gym-5004-hero.jpg b/img/tutorials/gym-5004-hero.jpg similarity index 100% rename from img/take5/posters/gym-5004-hero.jpg rename to img/tutorials/gym-5004-hero.jpg diff --git a/img/take5/posters/gym-5004.jpg b/img/tutorials/gym-5004.jpg similarity index 100% rename from img/take5/posters/gym-5004.jpg rename to img/tutorials/gym-5004.jpg diff --git a/img/take5/posters/gym-5005-hero.jpg b/img/tutorials/gym-5005-hero.jpg similarity index 100% rename from img/take5/posters/gym-5005-hero.jpg rename to img/tutorials/gym-5005-hero.jpg diff --git a/img/take5/posters/gym-5005.jpg b/img/tutorials/gym-5005.jpg similarity index 100% rename from img/take5/posters/gym-5005.jpg rename to img/tutorials/gym-5005.jpg diff --git a/img/take5/posters/gym-5006-hero.jpg b/img/tutorials/gym-5006-hero.jpg similarity index 100% rename from img/take5/posters/gym-5006-hero.jpg rename to img/tutorials/gym-5006-hero.jpg diff --git a/img/take5/posters/gym-5006.jpg b/img/tutorials/gym-5006.jpg similarity index 100% rename from img/take5/posters/gym-5006.jpg rename to img/tutorials/gym-5006.jpg diff --git a/img/take5/posters/gym-5007-hero.jpg b/img/tutorials/gym-5007-hero.jpg similarity index 100% rename from img/take5/posters/gym-5007-hero.jpg rename to img/tutorials/gym-5007-hero.jpg diff --git a/img/take5/posters/gym-5007.jpg b/img/tutorials/gym-5007.jpg similarity index 100% rename from img/take5/posters/gym-5007.jpg rename to img/tutorials/gym-5007.jpg diff --git a/img/take5/posters/gym-5008-hero.jpg b/img/tutorials/gym-5008-hero.jpg similarity index 100% rename from img/take5/posters/gym-5008-hero.jpg rename to img/tutorials/gym-5008-hero.jpg diff --git a/img/take5/posters/gym-5008.jpg b/img/tutorials/gym-5008.jpg similarity index 100% rename from img/take5/posters/gym-5008.jpg rename to img/tutorials/gym-5008.jpg diff --git a/img/take5/posters/gym-5009-hero.jpg b/img/tutorials/gym-5009-hero.jpg similarity index 100% rename from img/take5/posters/gym-5009-hero.jpg rename to img/tutorials/gym-5009-hero.jpg diff --git a/img/take5/posters/gym-5009.jpg b/img/tutorials/gym-5009.jpg similarity index 100% rename from img/take5/posters/gym-5009.jpg rename to img/tutorials/gym-5009.jpg diff --git a/img/take5/posters/gym-5010-hero.jpg b/img/tutorials/gym-5010-hero.jpg similarity index 100% rename from img/take5/posters/gym-5010-hero.jpg rename to img/tutorials/gym-5010-hero.jpg diff --git a/img/take5/posters/gym-5010.jpg b/img/tutorials/gym-5010.jpg similarity index 100% rename from img/take5/posters/gym-5010.jpg rename to img/tutorials/gym-5010.jpg diff --git a/img/take5/posters/gym-5011-hero.jpg b/img/tutorials/gym-5011-hero.jpg similarity index 100% rename from img/take5/posters/gym-5011-hero.jpg rename to img/tutorials/gym-5011-hero.jpg diff --git a/img/take5/posters/gym-5011.jpg b/img/tutorials/gym-5011.jpg similarity index 100% rename from img/take5/posters/gym-5011.jpg rename to img/tutorials/gym-5011.jpg diff --git a/img/take5/posters/gym-5012-hero.jpg b/img/tutorials/gym-5012-hero.jpg similarity index 100% rename from img/take5/posters/gym-5012-hero.jpg rename to img/tutorials/gym-5012-hero.jpg diff --git a/img/take5/posters/gym-5012.jpg b/img/tutorials/gym-5012.jpg similarity index 100% rename from img/take5/posters/gym-5012.jpg rename to img/tutorials/gym-5012.jpg diff --git a/img/take5/posters/gym-5013-hero.jpg b/img/tutorials/gym-5013-hero.jpg similarity index 100% rename from img/take5/posters/gym-5013-hero.jpg rename to img/tutorials/gym-5013-hero.jpg diff --git a/img/take5/posters/gym-5013.jpg b/img/tutorials/gym-5013.jpg similarity index 100% rename from img/take5/posters/gym-5013.jpg rename to img/tutorials/gym-5013.jpg diff --git a/img/take5/posters/gym-5014-hero.jpg b/img/tutorials/gym-5014-hero.jpg similarity index 100% rename from img/take5/posters/gym-5014-hero.jpg rename to img/tutorials/gym-5014-hero.jpg diff --git a/img/take5/posters/gym-5014.jpg b/img/tutorials/gym-5014.jpg similarity index 100% rename from img/take5/posters/gym-5014.jpg rename to img/tutorials/gym-5014.jpg diff --git a/img/take5/posters/gym-5015-hero.jpg b/img/tutorials/gym-5015-hero.jpg similarity index 100% rename from img/take5/posters/gym-5015-hero.jpg rename to img/tutorials/gym-5015-hero.jpg diff --git a/img/take5/posters/gym-5015.jpg b/img/tutorials/gym-5015.jpg similarity index 100% rename from img/take5/posters/gym-5015.jpg rename to img/tutorials/gym-5015.jpg diff --git a/img/take5/posters/gym-5016-hero.jpg b/img/tutorials/gym-5016-hero.jpg similarity index 100% rename from img/take5/posters/gym-5016-hero.jpg rename to img/tutorials/gym-5016-hero.jpg diff --git a/img/take5/posters/gym-5016.jpg b/img/tutorials/gym-5016.jpg similarity index 100% rename from img/take5/posters/gym-5016.jpg rename to img/tutorials/gym-5016.jpg diff --git a/img/take5/posters/gym-5017-hero.jpg b/img/tutorials/gym-5017-hero.jpg similarity index 100% rename from img/take5/posters/gym-5017-hero.jpg rename to img/tutorials/gym-5017-hero.jpg diff --git a/img/take5/posters/gym-5017.jpg b/img/tutorials/gym-5017.jpg similarity index 100% rename from img/take5/posters/gym-5017.jpg rename to img/tutorials/gym-5017.jpg diff --git a/img/take5/posters/gym-5018-hero.jpg b/img/tutorials/gym-5018-hero.jpg similarity index 100% rename from img/take5/posters/gym-5018-hero.jpg rename to img/tutorials/gym-5018-hero.jpg diff --git a/img/take5/posters/gym-5018.jpg b/img/tutorials/gym-5018.jpg similarity index 100% rename from img/take5/posters/gym-5018.jpg rename to img/tutorials/gym-5018.jpg diff --git a/img/take5/posters/gym-5019-hero.jpg b/img/tutorials/gym-5019-hero.jpg similarity index 100% rename from img/take5/posters/gym-5019-hero.jpg rename to img/tutorials/gym-5019-hero.jpg diff --git a/img/take5/posters/gym-5019.jpg b/img/tutorials/gym-5019.jpg similarity index 100% rename from img/take5/posters/gym-5019.jpg rename to img/tutorials/gym-5019.jpg diff --git a/img/take5/posters/gym-5020-hero.jpg b/img/tutorials/gym-5020-hero.jpg similarity index 100% rename from img/take5/posters/gym-5020-hero.jpg rename to img/tutorials/gym-5020-hero.jpg diff --git a/img/take5/posters/gym-5020.jpg b/img/tutorials/gym-5020.jpg similarity index 100% rename from img/take5/posters/gym-5020.jpg rename to img/tutorials/gym-5020.jpg diff --git a/img/take5/posters/gym-5021-hero.jpg b/img/tutorials/gym-5021-hero.jpg similarity index 100% rename from img/take5/posters/gym-5021-hero.jpg rename to img/tutorials/gym-5021-hero.jpg diff --git a/img/take5/posters/gym-5021.jpg b/img/tutorials/gym-5021.jpg similarity index 100% rename from img/take5/posters/gym-5021.jpg rename to img/tutorials/gym-5021.jpg diff --git a/img/take5/posters/gym-5022-hero.jpg b/img/tutorials/gym-5022-hero.jpg similarity index 100% rename from img/take5/posters/gym-5022-hero.jpg rename to img/tutorials/gym-5022-hero.jpg diff --git a/img/take5/posters/gym-5022.jpg b/img/tutorials/gym-5022.jpg similarity index 100% rename from img/take5/posters/gym-5022.jpg rename to img/tutorials/gym-5022.jpg diff --git a/img/take5/posters/gym-5023-hero.jpg b/img/tutorials/gym-5023-hero.jpg similarity index 100% rename from img/take5/posters/gym-5023-hero.jpg rename to img/tutorials/gym-5023-hero.jpg diff --git a/img/take5/posters/gym-5023.jpg b/img/tutorials/gym-5023.jpg similarity index 100% rename from img/take5/posters/gym-5023.jpg rename to img/tutorials/gym-5023.jpg diff --git a/img/take5/posters/gym-5024-hero.jpg b/img/tutorials/gym-5024-hero.jpg similarity index 100% rename from img/take5/posters/gym-5024-hero.jpg rename to img/tutorials/gym-5024-hero.jpg diff --git a/img/take5/posters/gym-5024.jpg b/img/tutorials/gym-5024.jpg similarity index 100% rename from img/take5/posters/gym-5024.jpg rename to img/tutorials/gym-5024.jpg diff --git a/img/take5/posters/gym-5025-hero.jpg b/img/tutorials/gym-5025-hero.jpg similarity index 100% rename from img/take5/posters/gym-5025-hero.jpg rename to img/tutorials/gym-5025-hero.jpg diff --git a/img/take5/posters/gym-5025.jpg b/img/tutorials/gym-5025.jpg similarity index 100% rename from img/take5/posters/gym-5025.jpg rename to img/tutorials/gym-5025.jpg diff --git a/img/take5/posters/gym-5026-hero.jpg b/img/tutorials/gym-5026-hero.jpg similarity index 100% rename from img/take5/posters/gym-5026-hero.jpg rename to img/tutorials/gym-5026-hero.jpg diff --git a/img/take5/posters/gym-5026.jpg b/img/tutorials/gym-5026.jpg similarity index 100% rename from img/take5/posters/gym-5026.jpg rename to img/tutorials/gym-5026.jpg diff --git a/img/take5/posters/gym-5027-hero.jpg b/img/tutorials/gym-5027-hero.jpg similarity index 100% rename from img/take5/posters/gym-5027-hero.jpg rename to img/tutorials/gym-5027-hero.jpg diff --git a/img/take5/posters/gym-5027.jpg b/img/tutorials/gym-5027.jpg similarity index 100% rename from img/take5/posters/gym-5027.jpg rename to img/tutorials/gym-5027.jpg diff --git a/img/take5/posters/gym-5028-hero.jpg b/img/tutorials/gym-5028-hero.jpg similarity index 100% rename from img/take5/posters/gym-5028-hero.jpg rename to img/tutorials/gym-5028-hero.jpg diff --git a/img/take5/posters/gym-5028.jpg b/img/tutorials/gym-5028.jpg similarity index 100% rename from img/take5/posters/gym-5028.jpg rename to img/tutorials/gym-5028.jpg diff --git a/img/take5/posters/gym-5029-hero.jpg b/img/tutorials/gym-5029-hero.jpg similarity index 100% rename from img/take5/posters/gym-5029-hero.jpg rename to img/tutorials/gym-5029-hero.jpg diff --git a/img/take5/posters/gym-5029.jpg b/img/tutorials/gym-5029.jpg similarity index 100% rename from img/take5/posters/gym-5029.jpg rename to img/tutorials/gym-5029.jpg diff --git a/img/take5/posters/gym-5030-hero.jpg b/img/tutorials/gym-5030-hero.jpg similarity index 100% rename from img/take5/posters/gym-5030-hero.jpg rename to img/tutorials/gym-5030-hero.jpg diff --git a/img/take5/posters/gym-5030.jpg b/img/tutorials/gym-5030.jpg similarity index 100% rename from img/take5/posters/gym-5030.jpg rename to img/tutorials/gym-5030.jpg diff --git a/img/take5/posters/gym-5031-hero.jpg b/img/tutorials/gym-5031-hero.jpg similarity index 100% rename from img/take5/posters/gym-5031-hero.jpg rename to img/tutorials/gym-5031-hero.jpg diff --git a/img/take5/posters/gym-5031.jpg b/img/tutorials/gym-5031.jpg similarity index 100% rename from img/take5/posters/gym-5031.jpg rename to img/tutorials/gym-5031.jpg diff --git a/img/take5/posters/gym-5032-hero.jpg b/img/tutorials/gym-5032-hero.jpg similarity index 100% rename from img/take5/posters/gym-5032-hero.jpg rename to img/tutorials/gym-5032-hero.jpg diff --git a/img/take5/posters/gym-5032.jpg b/img/tutorials/gym-5032.jpg similarity index 100% rename from img/take5/posters/gym-5032.jpg rename to img/tutorials/gym-5032.jpg diff --git a/img/take5/posters/gym-5033-hero.jpg b/img/tutorials/gym-5033-hero.jpg similarity index 100% rename from img/take5/posters/gym-5033-hero.jpg rename to img/tutorials/gym-5033-hero.jpg diff --git a/img/take5/posters/gym-5033.jpg b/img/tutorials/gym-5033.jpg similarity index 100% rename from img/take5/posters/gym-5033.jpg rename to img/tutorials/gym-5033.jpg diff --git a/img/take5/posters/gym-5034-hero.jpg b/img/tutorials/gym-5034-hero.jpg similarity index 100% rename from img/take5/posters/gym-5034-hero.jpg rename to img/tutorials/gym-5034-hero.jpg diff --git a/img/take5/posters/gym-5034.jpg b/img/tutorials/gym-5034.jpg similarity index 100% rename from img/take5/posters/gym-5034.jpg rename to img/tutorials/gym-5034.jpg diff --git a/img/take5/posters/gym-5035-hero.jpg b/img/tutorials/gym-5035-hero.jpg similarity index 100% rename from img/take5/posters/gym-5035-hero.jpg rename to img/tutorials/gym-5035-hero.jpg diff --git a/img/take5/posters/gym-5035.jpg b/img/tutorials/gym-5035.jpg similarity index 100% rename from img/take5/posters/gym-5035.jpg rename to img/tutorials/gym-5035.jpg diff --git a/img/take5/posters/gym-5036-hero.jpg b/img/tutorials/gym-5036-hero.jpg similarity index 100% rename from img/take5/posters/gym-5036-hero.jpg rename to img/tutorials/gym-5036-hero.jpg diff --git a/img/take5/posters/gym-5036.jpg b/img/tutorials/gym-5036.jpg similarity index 100% rename from img/take5/posters/gym-5036.jpg rename to img/tutorials/gym-5036.jpg diff --git a/img/take5/posters/gym-5037-hero.jpg b/img/tutorials/gym-5037-hero.jpg similarity index 100% rename from img/take5/posters/gym-5037-hero.jpg rename to img/tutorials/gym-5037-hero.jpg diff --git a/img/take5/posters/gym-5037.jpg b/img/tutorials/gym-5037.jpg similarity index 100% rename from img/take5/posters/gym-5037.jpg rename to img/tutorials/gym-5037.jpg diff --git a/img/take5/posters/gym-5038-hero.jpg b/img/tutorials/gym-5038-hero.jpg similarity index 100% rename from img/take5/posters/gym-5038-hero.jpg rename to img/tutorials/gym-5038-hero.jpg diff --git a/img/take5/posters/gym-5038.jpg b/img/tutorials/gym-5038.jpg similarity index 100% rename from img/take5/posters/gym-5038.jpg rename to img/tutorials/gym-5038.jpg diff --git a/img/take5/posters/gym-5039-hero.jpg b/img/tutorials/gym-5039-hero.jpg similarity index 100% rename from img/take5/posters/gym-5039-hero.jpg rename to img/tutorials/gym-5039-hero.jpg diff --git a/img/take5/posters/gym-5039.jpg b/img/tutorials/gym-5039.jpg similarity index 100% rename from img/take5/posters/gym-5039.jpg rename to img/tutorials/gym-5039.jpg diff --git a/img/take5/posters/gym-5040-hero.jpg b/img/tutorials/gym-5040-hero.jpg similarity index 100% rename from img/take5/posters/gym-5040-hero.jpg rename to img/tutorials/gym-5040-hero.jpg diff --git a/img/take5/posters/gym-5040.jpg b/img/tutorials/gym-5040.jpg similarity index 100% rename from img/take5/posters/gym-5040.jpg rename to img/tutorials/gym-5040.jpg diff --git a/img/take5/posters/gym-5041-hero.jpg b/img/tutorials/gym-5041-hero.jpg similarity index 100% rename from img/take5/posters/gym-5041-hero.jpg rename to img/tutorials/gym-5041-hero.jpg diff --git a/img/take5/posters/gym-5041.jpg b/img/tutorials/gym-5041.jpg similarity index 100% rename from img/take5/posters/gym-5041.jpg rename to img/tutorials/gym-5041.jpg diff --git a/img/take5/posters/gym-5042-hero.jpg b/img/tutorials/gym-5042-hero.jpg similarity index 100% rename from img/take5/posters/gym-5042-hero.jpg rename to img/tutorials/gym-5042-hero.jpg diff --git a/img/take5/posters/gym-5042.jpg b/img/tutorials/gym-5042.jpg similarity index 100% rename from img/take5/posters/gym-5042.jpg rename to img/tutorials/gym-5042.jpg diff --git a/img/take5/posters/gym-5043-hero.jpg b/img/tutorials/gym-5043-hero.jpg similarity index 100% rename from img/take5/posters/gym-5043-hero.jpg rename to img/tutorials/gym-5043-hero.jpg diff --git a/img/take5/posters/gym-5043.jpg b/img/tutorials/gym-5043.jpg similarity index 100% rename from img/take5/posters/gym-5043.jpg rename to img/tutorials/gym-5043.jpg diff --git a/img/take5/posters/gym-5044-hero.jpg b/img/tutorials/gym-5044-hero.jpg similarity index 100% rename from img/take5/posters/gym-5044-hero.jpg rename to img/tutorials/gym-5044-hero.jpg diff --git a/img/take5/posters/gym-5044.jpg b/img/tutorials/gym-5044.jpg similarity index 100% rename from img/take5/posters/gym-5044.jpg rename to img/tutorials/gym-5044.jpg diff --git a/img/take5/posters/gym-5045-hero.jpg b/img/tutorials/gym-5045-hero.jpg similarity index 100% rename from img/take5/posters/gym-5045-hero.jpg rename to img/tutorials/gym-5045-hero.jpg diff --git a/img/take5/posters/gym-5045.jpg b/img/tutorials/gym-5045.jpg similarity index 100% rename from img/take5/posters/gym-5045.jpg rename to img/tutorials/gym-5045.jpg diff --git a/img/take5/posters/gym-5046-hero.jpg b/img/tutorials/gym-5046-hero.jpg similarity index 100% rename from img/take5/posters/gym-5046-hero.jpg rename to img/tutorials/gym-5046-hero.jpg diff --git a/img/take5/posters/gym-5046.jpg b/img/tutorials/gym-5046.jpg similarity index 100% rename from img/take5/posters/gym-5046.jpg rename to img/tutorials/gym-5046.jpg diff --git a/img/take5/posters/gym-5047-hero.jpg b/img/tutorials/gym-5047-hero.jpg similarity index 100% rename from img/take5/posters/gym-5047-hero.jpg rename to img/tutorials/gym-5047-hero.jpg diff --git a/img/take5/posters/gym-5047.jpg b/img/tutorials/gym-5047.jpg similarity index 100% rename from img/take5/posters/gym-5047.jpg rename to img/tutorials/gym-5047.jpg diff --git a/img/take5/posters/gym-5048-hero.jpg b/img/tutorials/gym-5048-hero.jpg similarity index 100% rename from img/take5/posters/gym-5048-hero.jpg rename to img/tutorials/gym-5048-hero.jpg diff --git a/img/take5/posters/gym-5048.jpg b/img/tutorials/gym-5048.jpg similarity index 100% rename from img/take5/posters/gym-5048.jpg rename to img/tutorials/gym-5048.jpg diff --git a/img/take5/posters/gym-5049-hero.jpg b/img/tutorials/gym-5049-hero.jpg similarity index 100% rename from img/take5/posters/gym-5049-hero.jpg rename to img/tutorials/gym-5049-hero.jpg diff --git a/img/take5/posters/gym-5049.jpg b/img/tutorials/gym-5049.jpg similarity index 100% rename from img/take5/posters/gym-5049.jpg rename to img/tutorials/gym-5049.jpg diff --git a/img/take5/posters/gym-5050-hero.jpg b/img/tutorials/gym-5050-hero.jpg similarity index 100% rename from img/take5/posters/gym-5050-hero.jpg rename to img/tutorials/gym-5050-hero.jpg diff --git a/img/take5/posters/gym-5050.jpg b/img/tutorials/gym-5050.jpg similarity index 100% rename from img/take5/posters/gym-5050.jpg rename to img/tutorials/gym-5050.jpg diff --git a/img/take5/posters/gym-5051-hero.jpg b/img/tutorials/gym-5051-hero.jpg similarity index 100% rename from img/take5/posters/gym-5051-hero.jpg rename to img/tutorials/gym-5051-hero.jpg diff --git a/img/take5/posters/gym-5051.jpg b/img/tutorials/gym-5051.jpg similarity index 100% rename from img/take5/posters/gym-5051.jpg rename to img/tutorials/gym-5051.jpg diff --git a/img/take5/posters/gym-5052-hero.jpg b/img/tutorials/gym-5052-hero.jpg similarity index 100% rename from img/take5/posters/gym-5052-hero.jpg rename to img/tutorials/gym-5052-hero.jpg diff --git a/img/take5/posters/gym-5052.jpg b/img/tutorials/gym-5052.jpg similarity index 100% rename from img/take5/posters/gym-5052.jpg rename to img/tutorials/gym-5052.jpg diff --git a/img/take5/posters/gym-5053-hero.jpg b/img/tutorials/gym-5053-hero.jpg similarity index 100% rename from img/take5/posters/gym-5053-hero.jpg rename to img/tutorials/gym-5053-hero.jpg diff --git a/img/take5/posters/gym-5053.jpg b/img/tutorials/gym-5053.jpg similarity index 100% rename from img/take5/posters/gym-5053.jpg rename to img/tutorials/gym-5053.jpg diff --git a/img/take5/posters/gym-5054-hero.jpg b/img/tutorials/gym-5054-hero.jpg similarity index 100% rename from img/take5/posters/gym-5054-hero.jpg rename to img/tutorials/gym-5054-hero.jpg diff --git a/img/take5/posters/gym-5054.jpg b/img/tutorials/gym-5054.jpg similarity index 100% rename from img/take5/posters/gym-5054.jpg rename to img/tutorials/gym-5054.jpg diff --git a/img/take5/posters/gym-5055-hero.jpg b/img/tutorials/gym-5055-hero.jpg similarity index 100% rename from img/take5/posters/gym-5055-hero.jpg rename to img/tutorials/gym-5055-hero.jpg diff --git a/img/take5/posters/gym-5055.jpg b/img/tutorials/gym-5055.jpg similarity index 100% rename from img/take5/posters/gym-5055.jpg rename to img/tutorials/gym-5055.jpg diff --git a/img/take5/posters/gym-5056-hero.jpg b/img/tutorials/gym-5056-hero.jpg similarity index 100% rename from img/take5/posters/gym-5056-hero.jpg rename to img/tutorials/gym-5056-hero.jpg diff --git a/img/take5/posters/gym-5056.jpg b/img/tutorials/gym-5056.jpg similarity index 100% rename from img/take5/posters/gym-5056.jpg rename to img/tutorials/gym-5056.jpg diff --git a/img/take5/posters/gym-5057-hero.jpg b/img/tutorials/gym-5057-hero.jpg similarity index 100% rename from img/take5/posters/gym-5057-hero.jpg rename to img/tutorials/gym-5057-hero.jpg diff --git a/img/take5/posters/gym-5057.jpg b/img/tutorials/gym-5057.jpg similarity index 100% rename from img/take5/posters/gym-5057.jpg rename to img/tutorials/gym-5057.jpg diff --git a/img/take5/og/gym-5001-og.png b/img/tutorials/og/gym-5001-og.png similarity index 100% rename from img/take5/og/gym-5001-og.png rename to img/tutorials/og/gym-5001-og.png diff --git a/img/take5/og/gym-5002-og.png b/img/tutorials/og/gym-5002-og.png similarity index 100% rename from img/take5/og/gym-5002-og.png rename to img/tutorials/og/gym-5002-og.png diff --git a/img/take5/og/gym-5003-og.png b/img/tutorials/og/gym-5003-og.png similarity index 100% rename from img/take5/og/gym-5003-og.png rename to img/tutorials/og/gym-5003-og.png diff --git a/img/take5/og/gym-5004-og.png b/img/tutorials/og/gym-5004-og.png similarity index 100% rename from img/take5/og/gym-5004-og.png rename to img/tutorials/og/gym-5004-og.png diff --git a/img/take5/og/gym-5005-og.png b/img/tutorials/og/gym-5005-og.png similarity index 100% rename from img/take5/og/gym-5005-og.png rename to img/tutorials/og/gym-5005-og.png diff --git a/img/take5/og/gym-5006-og.png b/img/tutorials/og/gym-5006-og.png similarity index 100% rename from img/take5/og/gym-5006-og.png rename to img/tutorials/og/gym-5006-og.png diff --git a/img/take5/og/gym-5007-og.png b/img/tutorials/og/gym-5007-og.png similarity index 100% rename from img/take5/og/gym-5007-og.png rename to img/tutorials/og/gym-5007-og.png diff --git a/img/take5/og/gym-5008-og.png b/img/tutorials/og/gym-5008-og.png similarity index 100% rename from img/take5/og/gym-5008-og.png rename to img/tutorials/og/gym-5008-og.png diff --git a/img/take5/og/gym-5009-og.png b/img/tutorials/og/gym-5009-og.png similarity index 100% rename from img/take5/og/gym-5009-og.png rename to img/tutorials/og/gym-5009-og.png diff --git a/img/take5/og/gym-5010-og.png b/img/tutorials/og/gym-5010-og.png similarity index 100% rename from img/take5/og/gym-5010-og.png rename to img/tutorials/og/gym-5010-og.png diff --git a/img/take5/og/gym-5011-og.png b/img/tutorials/og/gym-5011-og.png similarity index 100% rename from img/take5/og/gym-5011-og.png rename to img/tutorials/og/gym-5011-og.png diff --git a/img/take5/og/gym-5012-og.png b/img/tutorials/og/gym-5012-og.png similarity index 100% rename from img/take5/og/gym-5012-og.png rename to img/tutorials/og/gym-5012-og.png diff --git a/img/take5/og/gym-5013-og.png b/img/tutorials/og/gym-5013-og.png similarity index 100% rename from img/take5/og/gym-5013-og.png rename to img/tutorials/og/gym-5013-og.png diff --git a/img/take5/og/gym-5014-og.png b/img/tutorials/og/gym-5014-og.png similarity index 100% rename from img/take5/og/gym-5014-og.png rename to img/tutorials/og/gym-5014-og.png diff --git a/img/take5/og/gym-5015-og.png b/img/tutorials/og/gym-5015-og.png similarity index 100% rename from img/take5/og/gym-5015-og.png rename to img/tutorials/og/gym-5015-og.png diff --git a/img/take5/og/gym-5016-og.png b/img/tutorials/og/gym-5016-og.png similarity index 100% rename from img/take5/og/gym-5016-og.png rename to img/tutorials/og/gym-5016-og.png diff --git a/img/take5/og/gym-5017-og.png b/img/tutorials/og/gym-5017-og.png similarity index 100% rename from img/take5/og/gym-5017-og.png rename to img/tutorials/og/gym-5017-og.png diff --git a/img/take5/og/gym-5018-og.png b/img/tutorials/og/gym-5018-og.png similarity index 100% rename from img/take5/og/gym-5018-og.png rename to img/tutorials/og/gym-5018-og.png diff --git a/img/take5/og/gym-5019-og.png b/img/tutorials/og/gym-5019-og.png similarity index 100% rename from img/take5/og/gym-5019-og.png rename to img/tutorials/og/gym-5019-og.png diff --git a/img/take5/og/gym-5020-og.png b/img/tutorials/og/gym-5020-og.png similarity index 100% rename from img/take5/og/gym-5020-og.png rename to img/tutorials/og/gym-5020-og.png diff --git a/img/take5/og/gym-5021-og.png b/img/tutorials/og/gym-5021-og.png similarity index 100% rename from img/take5/og/gym-5021-og.png rename to img/tutorials/og/gym-5021-og.png diff --git a/img/take5/og/gym-5022-og.png b/img/tutorials/og/gym-5022-og.png similarity index 100% rename from img/take5/og/gym-5022-og.png rename to img/tutorials/og/gym-5022-og.png diff --git a/img/take5/og/gym-5023-og.png b/img/tutorials/og/gym-5023-og.png similarity index 100% rename from img/take5/og/gym-5023-og.png rename to img/tutorials/og/gym-5023-og.png diff --git a/img/take5/og/gym-5024-og.png b/img/tutorials/og/gym-5024-og.png similarity index 100% rename from img/take5/og/gym-5024-og.png rename to img/tutorials/og/gym-5024-og.png diff --git a/img/take5/og/gym-5025-og.png b/img/tutorials/og/gym-5025-og.png similarity index 100% rename from img/take5/og/gym-5025-og.png rename to img/tutorials/og/gym-5025-og.png diff --git a/img/take5/og/gym-5026-og.png b/img/tutorials/og/gym-5026-og.png similarity index 100% rename from img/take5/og/gym-5026-og.png rename to img/tutorials/og/gym-5026-og.png diff --git a/img/take5/og/gym-5027-og.png b/img/tutorials/og/gym-5027-og.png similarity index 100% rename from img/take5/og/gym-5027-og.png rename to img/tutorials/og/gym-5027-og.png diff --git a/img/take5/og/gym-5028-og.png b/img/tutorials/og/gym-5028-og.png similarity index 100% rename from img/take5/og/gym-5028-og.png rename to img/tutorials/og/gym-5028-og.png diff --git a/img/take5/og/gym-5029-og.png b/img/tutorials/og/gym-5029-og.png similarity index 100% rename from img/take5/og/gym-5029-og.png rename to img/tutorials/og/gym-5029-og.png diff --git a/img/take5/og/gym-5030-og.png b/img/tutorials/og/gym-5030-og.png similarity index 100% rename from img/take5/og/gym-5030-og.png rename to img/tutorials/og/gym-5030-og.png diff --git a/img/take5/og/gym-5031-og.png b/img/tutorials/og/gym-5031-og.png similarity index 100% rename from img/take5/og/gym-5031-og.png rename to img/tutorials/og/gym-5031-og.png diff --git a/img/take5/og/gym-5032-og.png b/img/tutorials/og/gym-5032-og.png similarity index 100% rename from img/take5/og/gym-5032-og.png rename to img/tutorials/og/gym-5032-og.png diff --git a/img/take5/og/gym-5033-og.png b/img/tutorials/og/gym-5033-og.png similarity index 100% rename from img/take5/og/gym-5033-og.png rename to img/tutorials/og/gym-5033-og.png diff --git a/img/take5/og/gym-5034-og.png b/img/tutorials/og/gym-5034-og.png similarity index 100% rename from img/take5/og/gym-5034-og.png rename to img/tutorials/og/gym-5034-og.png diff --git a/img/take5/og/gym-5035-og.png b/img/tutorials/og/gym-5035-og.png similarity index 100% rename from img/take5/og/gym-5035-og.png rename to img/tutorials/og/gym-5035-og.png diff --git a/img/take5/og/gym-5036-og.png b/img/tutorials/og/gym-5036-og.png similarity index 100% rename from img/take5/og/gym-5036-og.png rename to img/tutorials/og/gym-5036-og.png diff --git a/img/take5/og/gym-5037-og.png b/img/tutorials/og/gym-5037-og.png similarity index 100% rename from img/take5/og/gym-5037-og.png rename to img/tutorials/og/gym-5037-og.png diff --git a/img/take5/og/gym-5038-og.png b/img/tutorials/og/gym-5038-og.png similarity index 100% rename from img/take5/og/gym-5038-og.png rename to img/tutorials/og/gym-5038-og.png diff --git a/img/take5/og/gym-5039-og.png b/img/tutorials/og/gym-5039-og.png similarity index 100% rename from img/take5/og/gym-5039-og.png rename to img/tutorials/og/gym-5039-og.png diff --git a/img/take5/og/gym-5040-og.png b/img/tutorials/og/gym-5040-og.png similarity index 100% rename from img/take5/og/gym-5040-og.png rename to img/tutorials/og/gym-5040-og.png diff --git a/img/take5/og/gym-5041-og.png b/img/tutorials/og/gym-5041-og.png similarity index 100% rename from img/take5/og/gym-5041-og.png rename to img/tutorials/og/gym-5041-og.png diff --git a/img/take5/og/gym-5042-og.png b/img/tutorials/og/gym-5042-og.png similarity index 100% rename from img/take5/og/gym-5042-og.png rename to img/tutorials/og/gym-5042-og.png diff --git a/img/take5/og/gym-5043-og.png b/img/tutorials/og/gym-5043-og.png similarity index 100% rename from img/take5/og/gym-5043-og.png rename to img/tutorials/og/gym-5043-og.png diff --git a/img/take5/og/gym-5044-og.png b/img/tutorials/og/gym-5044-og.png similarity index 100% rename from img/take5/og/gym-5044-og.png rename to img/tutorials/og/gym-5044-og.png diff --git a/img/take5/og/gym-5045-og.png b/img/tutorials/og/gym-5045-og.png similarity index 100% rename from img/take5/og/gym-5045-og.png rename to img/tutorials/og/gym-5045-og.png diff --git a/img/take5/og/gym-5046-og.png b/img/tutorials/og/gym-5046-og.png similarity index 100% rename from img/take5/og/gym-5046-og.png rename to img/tutorials/og/gym-5046-og.png diff --git a/img/take5/og/gym-5047-og.png b/img/tutorials/og/gym-5047-og.png similarity index 100% rename from img/take5/og/gym-5047-og.png rename to img/tutorials/og/gym-5047-og.png diff --git a/img/take5/og/gym-5048-og.png b/img/tutorials/og/gym-5048-og.png similarity index 100% rename from img/take5/og/gym-5048-og.png rename to img/tutorials/og/gym-5048-og.png diff --git a/img/take5/og/gym-5049-og.png b/img/tutorials/og/gym-5049-og.png similarity index 100% rename from img/take5/og/gym-5049-og.png rename to img/tutorials/og/gym-5049-og.png diff --git a/img/take5/og/gym-5050-og.png b/img/tutorials/og/gym-5050-og.png similarity index 100% rename from img/take5/og/gym-5050-og.png rename to img/tutorials/og/gym-5050-og.png diff --git a/img/take5/og/gym-5051-og.png b/img/tutorials/og/gym-5051-og.png similarity index 100% rename from img/take5/og/gym-5051-og.png rename to img/tutorials/og/gym-5051-og.png diff --git a/img/take5/og/gym-5052-og.png b/img/tutorials/og/gym-5052-og.png similarity index 100% rename from img/take5/og/gym-5052-og.png rename to img/tutorials/og/gym-5052-og.png diff --git a/img/take5/og/gym-5053-og.png b/img/tutorials/og/gym-5053-og.png similarity index 100% rename from img/take5/og/gym-5053-og.png rename to img/tutorials/og/gym-5053-og.png diff --git a/img/take5/og/gym-5054-og.png b/img/tutorials/og/gym-5054-og.png similarity index 100% rename from img/take5/og/gym-5054-og.png rename to img/tutorials/og/gym-5054-og.png diff --git a/img/take5/og/gym-5055-og.png b/img/tutorials/og/gym-5055-og.png similarity index 100% rename from img/take5/og/gym-5055-og.png rename to img/tutorials/og/gym-5055-og.png diff --git a/img/take5/og/gym-5056-og.png b/img/tutorials/og/gym-5056-og.png similarity index 100% rename from img/take5/og/gym-5056-og.png rename to img/tutorials/og/gym-5056-og.png diff --git a/img/take5/og/gym-5057-og.png b/img/tutorials/og/gym-5057-og.png similarity index 100% rename from img/take5/og/gym-5057-og.png rename to img/tutorials/og/gym-5057-og.png diff --git a/img/take5/og/gym-take5-og.png b/img/tutorials/og/gym-take5-og.png similarity index 100% rename from img/take5/og/gym-take5-og.png rename to img/tutorials/og/gym-take5-og.png diff --git a/img/hub-pages/webinars/posters/decade-of-responsive-web-design.jpg b/img/webinars/decade-of-responsive-web-design.jpg similarity index 100% rename from img/hub-pages/webinars/posters/decade-of-responsive-web-design.jpg rename to img/webinars/decade-of-responsive-web-design.jpg diff --git a/img/hub-pages/webinars/posters/design-systems-and-creativity.jpg b/img/webinars/design-systems-and-creativity.jpg similarity index 100% rename from img/hub-pages/webinars/posters/design-systems-and-creativity.jpg rename to img/webinars/design-systems-and-creativity.jpg diff --git a/img/hub-pages/webinars/posters/designing-for-real-people.jpg b/img/webinars/designing-for-real-people.jpg similarity index 100% rename from img/hub-pages/webinars/posters/designing-for-real-people.jpg rename to img/webinars/designing-for-real-people.jpg diff --git a/img/hub-pages/webinars/posters/designing-for-understanding.jpg b/img/webinars/designing-for-understanding.jpg similarity index 100% rename from img/hub-pages/webinars/posters/designing-for-understanding.jpg rename to img/webinars/designing-for-understanding.jpg diff --git a/img/hub-pages/webinars/featured/decade-of-responsive-web-design-slide.jpg b/img/webinars/featured/decade-of-responsive-web-design-slide.jpg similarity index 100% rename from img/hub-pages/webinars/featured/decade-of-responsive-web-design-slide.jpg rename to img/webinars/featured/decade-of-responsive-web-design-slide.jpg diff --git a/img/hub-pages/webinars/featured/future-of-web-layout-grid-slide.jpg b/img/webinars/featured/future-of-web-layout-grid-slide.jpg similarity index 100% rename from img/hub-pages/webinars/featured/future-of-web-layout-grid-slide.jpg rename to img/webinars/featured/future-of-web-layout-grid-slide.jpg diff --git a/img/hub-pages/webinars/featured/prototyping-as-process-paravel-slide.jpg b/img/webinars/featured/prototyping-as-process-paravel-slide.jpg similarity index 100% rename from img/hub-pages/webinars/featured/prototyping-as-process-paravel-slide.jpg rename to img/webinars/featured/prototyping-as-process-paravel-slide.jpg diff --git a/img/hub-pages/webinars/featured/remote-work-begin-your-journey-slide.jpg b/img/webinars/featured/remote-work-begin-your-journey-slide.jpg similarity index 100% rename from img/hub-pages/webinars/featured/remote-work-begin-your-journey-slide.jpg rename to img/webinars/featured/remote-work-begin-your-journey-slide.jpg diff --git a/img/hub-pages/webinars/featured/ux-slide-erin-young.jpg b/img/webinars/featured/ux-slide-erin-young.jpg similarity index 100% rename from img/hub-pages/webinars/featured/ux-slide-erin-young.jpg rename to img/webinars/featured/ux-slide-erin-young.jpg diff --git a/img/hub-pages/webinars/posters/future-of-web-layout.jpg b/img/webinars/future-of-web-layout.jpg similarity index 100% rename from img/hub-pages/webinars/posters/future-of-web-layout.jpg rename to img/webinars/future-of-web-layout.jpg diff --git a/img/hub-pages/webinars/posters/keeping-up-with-javascript.jpg b/img/webinars/keeping-up-with-javascript.jpg similarity index 100% rename from img/hub-pages/webinars/posters/keeping-up-with-javascript.jpg rename to img/webinars/keeping-up-with-javascript.jpg diff --git a/img/social/webinars/decade-of-responsive-web-design-event-og.png b/img/webinars/og/decade-of-responsive-web-design-event-og.png similarity index 100% rename from img/social/webinars/decade-of-responsive-web-design-event-og.png rename to img/webinars/og/decade-of-responsive-web-design-event-og.png diff --git a/img/social/webinars/decade-of-responsive-web-design-recording-og.png b/img/webinars/og/decade-of-responsive-web-design-recording-og.png similarity index 100% rename from img/social/webinars/decade-of-responsive-web-design-recording-og.png rename to img/webinars/og/decade-of-responsive-web-design-recording-og.png diff --git a/img/social/webinars/default_ogimage.png b/img/webinars/og/default_ogimage.png similarity index 100% rename from img/social/webinars/default_ogimage.png rename to img/webinars/og/default_ogimage.png diff --git a/img/social/webinars/design-systems-and-creativity-event-og.png b/img/webinars/og/design-systems-and-creativity-event-og.png similarity index 100% rename from img/social/webinars/design-systems-and-creativity-event-og.png rename to img/webinars/og/design-systems-and-creativity-event-og.png diff --git a/img/social/webinars/design-systems-and-creativity-recording-og.png b/img/webinars/og/design-systems-and-creativity-recording-og.png similarity index 100% rename from img/social/webinars/design-systems-and-creativity-recording-og.png rename to img/webinars/og/design-systems-and-creativity-recording-og.png diff --git a/img/social/webinars/designing-for-real-people-event-og.png b/img/webinars/og/designing-for-real-people-event-og.png similarity index 100% rename from img/social/webinars/designing-for-real-people-event-og.png rename to img/webinars/og/designing-for-real-people-event-og.png diff --git a/img/social/webinars/designing-for-real-people-recording-og.png b/img/webinars/og/designing-for-real-people-recording-og.png similarity index 100% rename from img/social/webinars/designing-for-real-people-recording-og.png rename to img/webinars/og/designing-for-real-people-recording-og.png diff --git a/img/social/webinars/designing-for-understanding-event-og.png b/img/webinars/og/designing-for-understanding-event-og.png similarity index 100% rename from img/social/webinars/designing-for-understanding-event-og.png rename to img/webinars/og/designing-for-understanding-event-og.png diff --git a/img/social/webinars/designing-for-understanding-recording-og.png b/img/webinars/og/designing-for-understanding-recording-og.png similarity index 100% rename from img/social/webinars/designing-for-understanding-recording-og.png rename to img/webinars/og/designing-for-understanding-recording-og.png diff --git a/img/social/webinars/future-of-web-layout-event-og.png b/img/webinars/og/future-of-web-layout-event-og.png similarity index 100% rename from img/social/webinars/future-of-web-layout-event-og.png rename to img/webinars/og/future-of-web-layout-event-og.png diff --git a/img/social/webinars/future-of-web-layout-recording-og.png b/img/webinars/og/future-of-web-layout-recording-og.png similarity index 100% rename from img/social/webinars/future-of-web-layout-recording-og.png rename to img/webinars/og/future-of-web-layout-recording-og.png diff --git a/img/social/webinars/gym-webinars-og.png b/img/webinars/og/gym-webinars-og.png similarity index 100% rename from img/social/webinars/gym-webinars-og.png rename to img/webinars/og/gym-webinars-og.png diff --git a/img/social/webinars/keeping-up-with-javascript-event-og.png b/img/webinars/og/keeping-up-with-javascript-event-og.png similarity index 100% rename from img/social/webinars/keeping-up-with-javascript-event-og.png rename to img/webinars/og/keeping-up-with-javascript-event-og.png diff --git a/img/social/webinars/keeping-up-with-javascript-recording-og.png b/img/webinars/og/keeping-up-with-javascript-recording-og.png similarity index 100% rename from img/social/webinars/keeping-up-with-javascript-recording-og.png rename to img/webinars/og/keeping-up-with-javascript-recording-og.png diff --git a/img/social/webinars/planning-before-pixels-event-og.png b/img/webinars/og/planning-before-pixels-event-og.png similarity index 100% rename from img/social/webinars/planning-before-pixels-event-og.png rename to img/webinars/og/planning-before-pixels-event-og.png diff --git a/img/social/webinars/planning-before-pixels-recording-og.png b/img/webinars/og/planning-before-pixels-recording-og.png similarity index 100% rename from img/social/webinars/planning-before-pixels-recording-og.png rename to img/webinars/og/planning-before-pixels-recording-og.png diff --git a/img/social/webinars/prototyping-as-process-event-og.png b/img/webinars/og/prototyping-as-process-event-og.png similarity index 100% rename from img/social/webinars/prototyping-as-process-event-og.png rename to img/webinars/og/prototyping-as-process-event-og.png diff --git a/img/social/webinars/prototyping-as-process-recording-og.png b/img/webinars/og/prototyping-as-process-recording-og.png similarity index 100% rename from img/social/webinars/prototyping-as-process-recording-og.png rename to img/webinars/og/prototyping-as-process-recording-og.png diff --git a/img/social/webinars/remote-work-event-og.png b/img/webinars/og/remote-work-event-og.png similarity index 100% rename from img/social/webinars/remote-work-event-og.png rename to img/webinars/og/remote-work-event-og.png diff --git a/img/social/webinars/remote-work-recording-og.png b/img/webinars/og/remote-work-recording-og.png similarity index 100% rename from img/social/webinars/remote-work-recording-og.png rename to img/webinars/og/remote-work-recording-og.png diff --git a/img/social/webinars/rethinking-full-stack-event-og.png b/img/webinars/og/rethinking-full-stack-event-og.png similarity index 100% rename from img/social/webinars/rethinking-full-stack-event-og.png rename to img/webinars/og/rethinking-full-stack-event-og.png diff --git a/img/social/webinars/rethinking-full-stack-recording-og.png b/img/webinars/og/rethinking-full-stack-recording-og.png similarity index 100% rename from img/social/webinars/rethinking-full-stack-recording-og.png rename to img/webinars/og/rethinking-full-stack-recording-og.png diff --git a/img/social/webinars/right-sizing-your-rapid-prototypes-event-og.png b/img/webinars/og/right-sizing-your-rapid-prototypes-event-og.png similarity index 100% rename from img/social/webinars/right-sizing-your-rapid-prototypes-event-og.png rename to img/webinars/og/right-sizing-your-rapid-prototypes-event-og.png diff --git a/img/social/webinars/right-sizing-your-rapid-prototypes-recording-og.png b/img/webinars/og/right-sizing-your-rapid-prototypes-recording-og.png similarity index 100% rename from img/social/webinars/right-sizing-your-rapid-prototypes-recording-og.png rename to img/webinars/og/right-sizing-your-rapid-prototypes-recording-og.png diff --git a/img/social/webinars/state-of-responsive-web-design-event-og.png b/img/webinars/og/state-of-responsive-web-design-event-og.png similarity index 100% rename from img/social/webinars/state-of-responsive-web-design-event-og.png rename to img/webinars/og/state-of-responsive-web-design-event-og.png diff --git a/img/social/webinars/state-of-responsive-web-design-recording-og.png b/img/webinars/og/state-of-responsive-web-design-recording-og.png similarity index 100% rename from img/social/webinars/state-of-responsive-web-design-recording-og.png rename to img/webinars/og/state-of-responsive-web-design-recording-og.png diff --git a/img/social/webinars/web-design-is-hard-event-og.png b/img/webinars/og/web-design-is-hard-event-og.png similarity index 100% rename from img/social/webinars/web-design-is-hard-event-og.png rename to img/webinars/og/web-design-is-hard-event-og.png diff --git a/img/social/webinars/web-design-is-hard-recording-og.png b/img/webinars/og/web-design-is-hard-recording-og.png similarity index 100% rename from img/social/webinars/web-design-is-hard-recording-og.png rename to img/webinars/og/web-design-is-hard-recording-og.png diff --git a/img/hub-pages/webinars/posters/planning-before-pixels.jpg b/img/webinars/planning-before-pixels.jpg similarity index 100% rename from img/hub-pages/webinars/posters/planning-before-pixels.jpg rename to img/webinars/planning-before-pixels.jpg diff --git a/img/hub-pages/webinars/posters/prototyping-as-process.jpg b/img/webinars/prototyping-as-process.jpg similarity index 100% rename from img/hub-pages/webinars/posters/prototyping-as-process.jpg rename to img/webinars/prototyping-as-process.jpg diff --git a/img/hub-pages/webinars/posters/rethinking-full-stack.jpg b/img/webinars/rethinking-full-stack.jpg similarity index 100% rename from img/hub-pages/webinars/posters/rethinking-full-stack.jpg rename to img/webinars/rethinking-full-stack.jpg diff --git a/img/hub-pages/webinars/posters/right-sizing-your-rapid-prototypes.jpg b/img/webinars/right-sizing-your-rapid-prototypes.jpg similarity index 100% rename from img/hub-pages/webinars/posters/right-sizing-your-rapid-prototypes.jpg rename to img/webinars/right-sizing-your-rapid-prototypes.jpg diff --git a/img/hub-pages/webinars/posters/state-of-responsive-web-design.jpg b/img/webinars/state-of-responsive-web-design.jpg similarity index 100% rename from img/hub-pages/webinars/posters/state-of-responsive-web-design.jpg rename to img/webinars/state-of-responsive-web-design.jpg diff --git a/img/hub-pages/webinars/posters/web-design-is-hard.jpg b/img/webinars/web-design-is-hard.jpg similarity index 100% rename from img/hub-pages/webinars/posters/web-design-is-hard.jpg rename to img/webinars/web-design-is-hard.jpg diff --git a/jobs/index.html b/jobs/index.html index dae23d748..9494b148e 100644 --- a/jobs/index.html +++ b/jobs/index.html @@ -57,7 +57,7 @@

    Tutorials

    - Tell your story in a compelling way to advance your career and salary. + Tell your story in a compelling way to advance your career and salary.

  • diff --git a/partials/sidebar-generic.html b/partials/sidebar-generic.html index 2a84e155d..151be6091 100644 --- a/partials/sidebar-generic.html +++ b/partials/sidebar-generic.html @@ -12,7 +12,7 @@

    Featured Courses

    - Designing Accessible and Responsive Websites cover image. + Designing Accessible and Responsive Websites cover image.
    Learn More @@ -25,7 +25,7 @@

    Designing Accessible and Responsive Websites

    - UX Fundamentals cover image. + UX Fundamentals cover image.
    Learn More diff --git a/tests/catalog/full-lister.html b/tests/catalog/full-lister.html index 7a20b0956..134b02334 100644 --- a/tests/catalog/full-lister.html +++ b/tests/catalog/full-lister.html @@ -10,8 +10,8 @@

    Courses

    {% for course_hash in sorted_catalog %} {% assign item = course_hash[1] %} - {% assign png_path = "/img/course-artwork/png/" | append: item.id | downcase | append: ".png" %} - {% assign svg_path = "/img/course-artwork/svg/" | append: item.id | downcase | append: ".svg" %} + {% assign png_path = "/img/courses/" | append: item.id | downcase | append: ".png" %} + {% assign svg_path = "/img/courses/" | append: item.id | downcase | append: ".svg" %}

    {{ item.title }}

    Course ID: {{ item.id }}
    diff --git a/tests/featurer.html b/tests/featurer.html index 641692449..80997b8e9 100644 --- a/tests/featurer.html +++ b/tests/featurer.html @@ -17,8 +17,8 @@ {%- assign artwork_png = site.data.courses[featured].id | downcase | append: '.png' -%} {%- assign artwork_svg = site.data.courses[featured].id | downcase | append: '.svg' -%} -{%- assign artwork_path_png = site.url | append: "/img/course-artwork/png/"-%} -{%- assign artwork_path_svg = site.url | append: "/img/course-artwork/svg/"-%} +{%- assign artwork_path_png = site.url | append: "/img/courses/"-%} +{%- assign artwork_path_svg = site.url | append: "/img/courses/"-%} {%- assign instructor = site.data.courses[featured].instructor -%} {%- assign instructor_name = site.data.bios[instructor].name -%} diff --git a/webinars/index.html b/webinars/index.html index 17c56282d..1fc43ac08 100644 --- a/webinars/index.html +++ b/webinars/index.html @@ -64,7 +64,7 @@

    {{ webinar_title }}{% if webinar_subtitle %}({{ complete_webinar_title }}) - + {%- endif -%} {%- endcomment -%} {%- capture headcount -%}{{ item.speaker | size }}{%- endcapture -%} diff --git a/webinars/meta.md b/webinars/meta.md index 9dc09af5d..ce42aae28 100644 --- a/webinars/meta.md +++ b/webinars/meta.md @@ -4,6 +4,6 @@ permalink: /webinars/meta/ page_title: "Webinars | Gymnasium" og_title: "Webinars" og_description: "Insightful conversations with trailblazers in the web community." -og_art: /img/social/webinars/gym-webinars-og.png +og_art: /img/webinars/og/gym-webinars-og.png og_url: https://thegymnasium.com/webinars --- From adcc2055e5e95d86090a1c844d857d3e2148fca0 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 30 Jan 2024 12:03:24 -0500 Subject: [PATCH 66/67] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5654549f..f0c9d314e 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,14 @@ This repo serves as CMS for some of the static content on our Open EdX site. Con ## Getting started - clone this repo. + +--- [Docker Compose V1][1] - run `docker-compose up` in the repo root. +--- [Docker Compose V2][1] - run `docker compose up` in the repo root. - +--- - Wait patiently for stuff to load & compile. - navigate to [http://localhost:4000](http://localhost:4000) to see the build status. - Get busy making beautiful things! @@ -23,4 +26,4 @@ This repo serves as CMS for some of the static content on our Open EdX site. Con - [http://localhost:4000/sitemap](http://localhost:4000/sitemap) ## References -[1]: https://docs.docker.com/compose/migrate/ "Migrate to Docker Compose V2" \ No newline at end of file +[1]: https://docs.docker.com/compose/migrate/ "Migrate to Docker Compose V2" From 738019db9e52ee1ef707e3b21ab44923bf2f38d9 Mon Sep 17 00:00:00 2001 From: Roman Edirisinghe Date: Tue, 20 Feb 2024 15:25:38 -0500 Subject: [PATCH 67/67] Create tutor-logo.png --- img/brand/png/tutor-logo.png | Bin 0 -> 14135 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 img/brand/png/tutor-logo.png diff --git a/img/brand/png/tutor-logo.png b/img/brand/png/tutor-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..093ebedf98001924f1c6fcc49f4ac3b0172d7fed GIT binary patch literal 14135 zcmcJ0WmHsO`0f-nbV+xEba$tc4h=Fi5`rLIGaxA`QqqmX&?P-IC0&!K`L}b1tCxi78omWP9 z#8h*t;IrQox#IGhikr1q9~nlHxWTpmA4xTz$u0@n+euEI+)-t38d{7%y_wpSz1%7j z2>9da%0uf|F91S85G;_#Uf%Vm(=v=Hr%4td&iUEX6%9#Fl-tEBD?XW{PSuQuw{%9Z z_s`ZU{`dZj@@e;Fe+Jjw)JbOUc(*rG&RvA^dAW+y$&+XM7;r0?0ff_8i>4SbwB(>! zI82Q0FX$gMS}y5YoU*t<^Gp7pKm+~Ih(;49>lmhV^utrkuAZ5=0x3QX+ng9~prg6o6U9xe$h59d0VYSSFmr z2;*|bMgc`YEyvAa9z^!MLbb>5#|q@29Q?2eVJamTje!2!hguuUg=%ZTFcutUU3&4p znwr;bY~05sV@_g0>{L<3Uog*iu8K|+yr&L3B;rMnLkVNDHBMDE3UxwON*|lkZ1>l9 zi8r{)xBw3q_Ph2km&j~&W7n1WuK(d+-`g+e53W^*{)DD!VdF67dNOk~>C9ML!;P2~ zwY7PS;L>yhTyS(B_s6S(AalSfaG!ULo)Rg5>=`Vo0yBYcg)kDuT-P0lv0)5OM_rxT zZYR$-K}0Sl071%#_e10m@%gjCwOaqN!hs68EVF>cD0(ps5RX35DCC8xnwfe}I*SQd zIqqvT+1fr7rgBQ!{IgCcPJAKOAnUQmKe#JIo~|9mx&^xk7s{}d9P=jy3RT!$ogMe~ z_MX{rH;1M9jR0sIV(>ANn1sgX6Kg(6w0hsvi3v%&qE_iIx-qjOIS*AEY^5^Z&xZ48 za0(u7tFS*iS_y18xO%Ftu1?6_j1X?Q0w&G8(J5BUM4qmmG-f}}N;@Ybd;j&O`Vyo` zBUgcawx2drF&UVq!v#*C`1t(V0JU1`49$&~#s%LN7wKw{k6n3)$2Y3TwgFNEk%}xA zd_GWAEwmQ835*1X3^=|+I+Dq1Mi;Yvloam!3B7-Xw2oF98~nJaUsxbaSgnGb>mB!_iCoQwdhXp1hH3*!^1JXzV@V7z zHiO-lK=e0$U)3gk(A1orSVReyi=I9OgGvEBeKPAP zfxjHM zC*vNj#UIxOC8Hntrf8x6!kTH1Wyxg;J*JMx{-t09a8~>9$FhAE6*V_xOckA7TwPO- zw|r$7je41MRHNZIbI%(uwVmh=Q^-4PO(S*g+=Do<8SjLhZ&9?wm>0y!$#>M+1zB!x zIh^b)&`22ex81V;{J~I8Z*Yy-mv?&i8?|EngSwL&AuJJA*HlqI8XH$#$9o!b-?dMR z#9iOS=Nt4*hgh4YhC260?UDsodH?%+Uf1RM&sW2#f|DZB$PH(oFThr#l1t%$a=Bu; z9k5F6*xPct&?p)7m?W-@nQxv1LZ1E&Fuy3dy|V+FjZ>JqBAuJjBU_ZpQCJ+LudW&Y zZm}jxut1Xj#8lG%kL3JAWu?U3_d4Qpz2M^N-hYw37sKZrmk$(s#B!5LLj(>HMN@q) zZ^nzMq<^uis)Gv;A`>DU{h4Py%uY{!^e&g{9(3&=jk0);-gfSa=~ zqr_H69Vio>)UCfcaF~5=4WNV=goX|$YIn)WZ?<&U#t%03KOyFj19*9P(K?18hrtnw zRtoj*;k1|;s3p3Q4q4A2b3LrhoG_QT>@P?fDHb30*fh^KmuT^E?7a~Yuj{+*8B|yO zO4#i{k-+NyFn)Y94-wt?{1d?N{f=SAxRXeZ$Mf%vqwFX*vTLRfnMSre>~bG2<2@&cJR^HXJ#}THuFm+jb4Y!5~t2=pn0@j)1^AS4< zi=J(+BK|)Rd1v6+yreO6L@h!zJ|D#BqH()8Gjl9)NH2mnD~pnoHnJ5%y&q4d)Zu0S z4$g~JJ_Fs+Du%oq->h0%8gmvCX8+6IK$Aw5PU;eIQf60fDC=CC4KXVYkz_Bz3BZw} zOrHr`jpWam6ndO3W*i&vJpZ1EJF1i&D{g18&mFG?tW~(7ovg+qXf;x|Ii(~p} z`ywY^bc8gj57gW^@EFo7$ZkhxU23l^=|$graA#{e1$ZhfMZ5=KOd)p3=VI@pa@_x` zaFD7y)n#DXhf)=h%bV2NZ5|u3_)d&5(fD0RC2AXw+fQMZy1)7|zL=Op^^j3Y#>e!c z3#_p*rZPJmD#OSi@@omXCopnNBu`!+yYQAiqcOw%OH37D!X)VTyW^?)*`C*~k5%ns zF%cMTvBq5AuVcCqxa5Q_Ws#Cal)u&+ysk+?Vlu3#f(C+v6%CE=VV$)Ylg)Ob_QBJL!xsn|cuxgLJIPaV`WdwCO7ULgo^nnyl*&YMG*6`HJB}iGV(># z<5D@LC-1u4#BXG)pSypPMW0^&C~n-BO=A z_wpT$U3g}pX$_ep)ZyS6@GxGNyWVIvz;lPDL6`5`u8`L<;{tkUaB+u=G<;~+RK5}S zcHBwD-__Gs2hlz7WRxj%FKzSbi zq_W)AaDlm-RZi{67p<_z08o+iNSL3g_rb)59E=-!JcL{CMM&Ekkl|pq(E4?DHfDkP zbY!hQ#E6Oi=E6NF2Gny{6zlX?k31J?dKAW-E=$DjByMXPlmLlPQYN4+E7R)1_1V^> zsXe{$bE2G{NP<|7}0v7{3QWj3K}OX&5BFw}1KKZw0)C zGWz3QEqHcm+FwaYX@={z7#8SpXXhD`*>KO@1X9AKH4Mtzf+rbCw267=Ni-e^TD|41 zoVHk*i6+l2L%Gh_DLb~r=P#x`-glj=IBIxi_;l;eSSe;RndRZ+SX}!Liq`bSVFFL% z;!C}^pWB(kC7!aE#Q)HXyu83A|3?CzRrCm;;jTW2{1miO%kE1YGceRoK@vOi7a^Iv zYGS1a7tY-?W*9Y=h&o6ZBaaDNA$rg!*4&(-0&x@vMn+FREk{NEy+@jH-G`XE-^aW^ zYSIV~hU3Tj7w&z{+5)0lhjoo$l=+bdza}8ke3o!)YN)FM6N4Nh@t}nMQ)8<~MON6I zp4ub9ijEe?7x!@J-qDP%gm`F^%Z6c!n27^P(%rm0z_ZS%5F9g8NB~chfqYVY7-{-* zc%%jiReBjUeRFP-{<0V%*FG|NENg+5==IJnJ%sBYvEj34z}YUu)u0`h=Eg;3W#!=I z~AgUbYK-uQHm4lAnb^;pb83n$#vzL_#XV?2QoXcAEMM8%)G4NKF#Dstc> zBL(26Pk63E*c;i5a@nGR7LmzV+wZ+QOZH*ArMV1bbJQs3FuLKN&iUlR7x8Tsm*jP$a|G(vpj;mcR>($1^a!aI9 z^$FB3i-@PjYj*tUA$RdlruhpDGITgs@Ozr{qzC@vQHhDrw3l+pqLp|bK)auzQU^cV zHOps(sU{|X0>7XA`Gem16Rzt;jVXQS>WbAO&n3=}-yx-1lFn23=T81lat>|>11`Tm z{LV`NU6p1XaVrkt@Hsac#XU4^&Adp=*s{4nOAVX;Dnt3? zp=x7QJEh1n6tm&ob3uYIMj2{(r2-HQz^<&%?3w~rZ#FxF7#<{V`SYZTeVU>AX>_vR zJ-}h09VBPfi^Q%L3rtfBm^V3Xe;tLLD!}c7KD)4sg=>~HtYaLj7H2O^_Mlgs=xih7 z0?vhmuME?1?TB62DKE$0gBAZx7oxcfbjC_pVX@H%Wg^H#{jSo?wuHlDJ3~9WY*d8x znybZB<v)Xl!SzWYiVX;>wJM6_0%zR)uQ`ivzoaMRj>f)gJb;h zLKb=mf4oO&Z-n33V3$?j$ht2~u@!lB)+VA{o6@wUJ(V3YRmR zg#?`Te9paEa7^X;J{xmz)pw@gof4l!dROkzY+nBLSyS$WScc9I?D^>pNjmB4F>T{z z5N-W5$K2VWFxLL`#`UnfyZ+-Bk3d(`J=FEt;pRVd;b%w5N`nHu%I0P=j3h2I{-`dp zYF?qOwl=x0PKY}Fim>;tdNa7ov25`iAT>A=f(ERpo$6xO!pORF$Oz2PHsfEkS(tW# z|9NQV=J>IUa7D#YNePJwvI`mZ(3pAs(oR5nHtduQYd4ZpK><;B2HjEzXtOPhod@E| z2Q?Q2sF~i?$9Eg_@z`(*%ftFBRi)l~LcrZ};PKJTnRp>Sbm`l4ari$4dI+uKSk1@-=7VHoe$C(7%4+ZOjxjT|$0u2o z+=nBjn(V5qil4G@%6J|(ys^zxD^a zpb6oxtu!=t)+O`NBRCa7X}Y@djL^zA*z2D-^!abi-ZhK`_^Tc*p$?Kwi|J+kyZ@hM zAM#}K^pEAt#&Qn%t&(bwYP$-lhvG*tB-pBaJIIR6Isp!w12Hy@wIM@o>d!W}Y$C%Q| zoiPqCSB7}!1s`AhTy&l9v~Hwrlux_s*_Z3|lhr6EpH+wXUpXwlyqChN%@rJt7_g^7)kH|&0=&$`VN~_0hfQKbg}rwkCGN^jd-UOqaI*5v=C0smSLtzV^s)C%>3Nf zJ7dgt=_QjgKBx3RdB;5gy4(8fBHDY;L~PL`PT%O`Xt6aYx$p5|a(yrPmN}e&3hWRa zp==JodO{eJfP#|f*cv5*kh1XHIZK#F8g!cYAJ}4*_INOfqM}Hsx6gQCK)Z36${{8o z8nD-2>h8;-6926SFm7pBgFA()kwe<*$#^}&Lf_>nqk4K;dvW3h8%s=h8wT9<>i})M zYe@yjT%>5Nih7Sc&TK7U{Fm>BuPn?z3AcY6lgg`jDurRjm^w@tD0ggETCJwsBMr>O zk>osL>^Ua$ZQG$>ldO*{dllHxx5MTOz%KBcGpoH&HrNy~3Hgj;g&3jL566{hzh9Uv zjCZemWl+hbm>6^+k=4po%}pPmAJNC~%Fko@6xA5=LR39+IOgZY$(@}{{YF5Zb}BQT z4F=19?k~!G!PY>Bn$dKMkjh}oG?)+hU{MFHXdeV18lPEJ$l)CUEwt)8EY0 z3C!>{I%y|$G7HjIQ9S*|A9QNtRsS{o^>jpj=flQAySKO5(YFT;fSJaDe(_>m^t_?? zT<8~ok{f9Qlov4`eb;-1cIFz<>lSa*FS+x8L!vkXN|vZ@Yt}xXA%Dp(&J;-3@=LC2 zmju|)0YzY`gcrN|7OA!R#)^Zq$G%c|T$y^Aq4ADS%t4&lpVDdA$RRBKDD)YVmfsY( zYAv{L_&gealdC~^!RS}SXqL}}3O)St)z3M8Q22uI3o6L2_fr)1v{Amrox00?#K5Vd z7~^YZ$4(kca1hRWy7vKp9efrl3fxKvs>j)bz>XUK6uD9FZ8YOF2;|tR1P*8^dxPYl z^0y#*c%P#HqJyj(`WJM_f|Z2>(}de>IaEz{#D`Ztq5OM=KmH@S;7`U4fSe)Wq*r%v zLiC|q1NeOpMh%OTHi`^w@O#8}f-5qEQScOPVsiM=g~v$ZS&HIe2tpUW(pkn&+xL8M zs-Q~+wHu(%KV#JLy8{?7%i9ltKV>~Ek^BnZjcbtm)TquVgL>tN`-q>4C32xl#{$EZMqDu&M5K`sDm(k~J03YD-kz^%@9 z6nf$A3NaHe6r|^Zz`6kz=@v*ASYCR=#VWFGna3R9ByAMy%WL7?B`+aoBXSNBba{Uo zre6BtMpl9pK$AR8u^&4lld^zi?ft!}aiCCep6H3gPsHKUJgCY@4fz2kr!SRp#Dl4Q zt@+z=Gc(*Fr9Wa}?DR>JiMe-8pmzc&%h=aWU80eT6$@voUbPzTv;kC{)Iv6rdY zTO`uVNEJ)-xhk{T(5B49yu#sYc4(+2p-aM6t^Za;%SOv@j zLe))vF1>Ov+7VyIm%;aRF|BE`f&~0hW{^i7=)YVu=KS02saqi;6+QAqMc~lyXSUAD zgAY<7zk_0oTLX@3a{=Q4{)@Dv3l@Ls))n9m6Ti*ieY89R6WfF!D_g6;(UACphHOw1 z(^dsWxIykOf$7e`Z;S+XemWG|kp7kYyKJc%Bfg8@F9$R$T`2xx-@+cXQIYe6QH<3Nw}(z9J!nPo7aY&i>C{uLCxVF}-4=NRcP#c1nTu$$u9eT! ztGM{8iid37Er_<25KdhD;fB?K)dSna*d=u%P5gmh6+N>23!f}Ai~(1;j+; z&rDN1OP-M<&d2vTs35kWMfvHjlKrfT9bSa{9rY6)wetS6&DxvB5`gtwr@Cg_Vwj(m zwKdQzaZJ);GgI0@DjU+9s-tCpjybLlxXeI7)AskDS2FrjL9ZO`qQJ3Veq^Y)Z-2~` zCcHSsrel3zQ9dTj(ZmnCsCF$)4fjZ1M%@B9?US!0Hvw?&IsNv1e44Icii9GE=6GeM zWF zEpdK=KVHiE8*5@Iyt)Q8NIgjadq#YgQu$6xOIy@I4Q@Y6L!tdSaal(yu(`!Z1{Q_c zK)t2tCuF>HD;|9_oBbcJ5!5>9wYinzD*pV2H>NY?-`RcK+D;D>( z+w8pw`$%Fa=PPMZ@;tmd+Mo5sAqaH5O)=_N`ss(XJHN~A%&n%>WJczXlT&cJEfb!2 zkkn6U{uiGY(~S3yt!0N^M1@CG2$h0<>bDH$HUl+iu08dSf*Q=nA)b=j2>XiAt2 z?t0_?aTlEUr+iG`>p>UHFZc@Z4rzbVVRho*=>K$N3AQ>6U2r(L`fU-1^lBs_bhdlh z-qw;f?jp)A3|IW|yD_A(oA)tpozd(#)ZDds(K++mH0&{=n!mZT%Xoo)mJoSBv>x)h zain1v<{uoB{A&uHAx*-qLd8%WAZjLU3ymDqYSgOuhVL2o%L{GqTOIRJ2CY~E1MeO$ zn3QvEniA$}Cut&D!of4x2vC_S2Q8wQH~G2dE!q2cK<@Ia=A7O)#fBp~JN8?%TYanzCFG8Q zHlseOYE}*VnIh$Tv|Gmb?sTYja0^+Ass-@6;?+901CHAJhmd{NPC&xrocd?%J`awP zFb8l&MsLWyDs!p_7aRE2YU3wYtTZQhJB6`pZ2MTYUBAi{GX)q0E5n3#C_kf48Zz}r z&tyMiDxX=F!PDT)?|7%H){Yc0YWU2!8Hi#BB&zm3RflK5`=jnh;MJnnwkjHYj>hHW zZj=jDG91~Hy*cL2?zsiYAB9xz5p7m7i{bIl;UZuiNJ%c~cOkBUzLdmu$@KS{S)ZBY zv{Om&^fO5`|Y;Ol9_6UXyzTd1*FSGOe8N@kXJb#={i zW-PK6MKa_u_-xYZ(_uyKMTc@+$J^XLJM5+-G967j$7-Q*&z^Q)811RkryPD@k>Ljh z;>JYDN!yObs#JF_k<<{TcG}($Zlz;vi+iWZ1-9+)f^`w5B6n351=ml=^WH%i@m6Gh zmGYK9C~NgnvP?CaOBAXT!Quv-#z+??{g;n_qiqAn}KN?3or zJQmCYY=3r9EjKou!4O-h+c1K#(hhwMsV4yK)|R(_VwqAdwTKQC;q~!6E2JS3IaMVm z1q;QBYv_i8THyY$T>mwXgZLfsrD`~u3pzhSP^p4tEPfNi$PWo9}? za{y%0+%ET-vA$`2Px?*$`;6YmBOZPcV~&KLWJo3&MKW$!O|PUk>{>8@ULCJ7!VE{| zs1vM9Ln(ZK>@!H+!DQ+LK^5QSWi+igF5DI7>M(e;ejym`@2_B63$WbrwUU*3Oi_l6 zj{p6`m&S+CZMcl*4+I^YmW!bzH(-kPC#(zL{-IP%C>7#W4oyYg3-GK>Itt!$0X#Cw zE>9*g1P-5EJqtd$j87Ia)s$F(oaWG$I^M$E_)190EEbA(L3G|)3v1B<#g_lTU?Up^ zsy=|jDzS)5g{Gn0in6@NU}|^4CcqfRcV&E29%~qNE%k1sw)dHSg-Yva&6oh^5>sb4WcW8-T zjd-tsFP49;EBcHR=B!AwR{lrj{7Zu#oZ1K*pfh3162Jm}_UxIe>CJVMb9?c-0q(5i zXn@^=oLcsx@STp$F)fKY?FX#TWaI%$g6+RO`sVe-TH)}wsFiF)(jMnC%^iq|g+3-FJH;dH= zTql(Hr4T!LAJ)vSxguRZt$ntszt?rFeT+|Ev{v}u2_JouJ;1jSVox6sE@f!d;4Y@; zQ6{vQLgr$);=36-tM17xgD3g0)}e5*%ZUA&&D#{$MqT_z$(D-**3Dths5>tV(XN{z z`o@2XCSB~bHfUj+4m6uD-gq0Z{!HXdS+h={nP`H3kTFukyMNDX76pQQilRK2Cs<9( z8}q1Obe4yQ4tLaZ)0hYx%=!>%C&P>)qYi=Vv9+{eCiYl-wFJZKN9o zR)I1$Ykm6LvDQFt{yXdKIzg~yWRx;4+x&7eE)b*rZDfN|C0G68HdY$)J?~Ur==tt@e%1}KfJ?viMKuy{sh+JPK^xwhGY6=Duppg zyXD&-oII0qAzm^;c0~fa+LuLHvBQmX)&qz>$iM5r#*Xo`q(vCunk1(bMfzUHIeAN) z$)5^GWzD#iZ$480nm+YAc>Z6ZG_e~>i#$lXRu^A=K5rFsSQgSZ)T(Y4RUQ82A{g+f zGW&D^Ebw@E(-2d}FQ)XOa(N(Mc1`iMtH z1w=OKlP)yoP59kqb8a9Wl{rp~%dB7~MCZp)#V>B%md!=;n9(9vMJiV1&Yw{3$2kBL zL&6woqvq((p-_aW;?pWA-mn)xBuoZ<*S+*B@MA`|7fjM$fM02Wt3c)@oz6meT0))rx9{~+3_oO}A(I*87+A6a>T?5pk_? z3KB`bmDohONPC~d^uJLJri5ro^_yw>y?S*-Rd3uWj|K+d)Q_xqjvH${0(3w(T9?j( zH^@GRuDl7m6)9%8I23u;MI)n!t(&J2Dz~W+|M>1>xn#izA?RL_MU(v#JW^~40LmRF z3{e%AFrJ1owGL-V%oZfnci9%@Mkf~wWs<6rNxy%VJ6#)Z77@rSbvP{wSqqzw*J1Dh zA0l(~|6%GiS~WG935(H-Q=bY6Yq$!uG|1978+Oo(uV#H68e|VS$YrT%Gd{WGz8EC_ zwck`0^1LJ}`R=_7Nn82=!&((A0JvOX=8it>WC4|OYKM^owR1Buv)M%6oDLU^ewd!w z5i6ypW6%+9dp`38DJmS?YuKS^Bk-5Kz0#!R{_mYPkOyo|rtBM_;FGctvYjWvmGSw5 z5+?JyjhdKx&xb(X6SoQNEmWyIGPh#4?nifi~^-L0yW}Cx$-8zep|p7 zu|$Xdq0{&@t&mn>F|{BL`CVaUooj+D4W}-UP*eO)fdye7vp&Bq)PnQ-C^kgneHc6K zH!59mhqB3#Dr|wTR*s0 zMM2d&pG$b$6TikBznj1@AcP5PI$3fNo|%Tt(m~Uo8utKYaIF#CB+NcC)3pt$m$&#o z5@3(~ID$*x6Y~J5=c-=!|8A(xzK99gIMDEmzGK}|ot+}$z`cSNN}JG~P2{=)jc2!ZLS<&PuI%J4SYvrOK zpZmzf94xV_eT5zwYNSYU0X{l!W`Q&%kAyMkeA6kQCYu~Y6POJV-zJQeD||`HEJK7> zV>Xyk=0pJlixqO`b`-`%b`+cjs6u>+GhiRP73?xjH5HehzxHF(pWPtOxp*&*{7Vua zyy_Xdn2ox=-s)IG)By{DQ+)l3Db~O<>ido777lWI;@{aug`LFb!Ea#My6`nnyYU*=Zjhe}`8dEp zrax&OgMVp?`0=`S)0Q7sCz_cA_;Hwe+wz0FKHMuEPg~(8mGusl0kV*+3Y~i>kqe= zZRVTFf@*vKw_PpcG|vav;Q#*AkmGy)1ywr)j<_d#8jA^n7?jJ;Z(C0fw)WctAFG{$ zur@!Z2n8A!gHkDjII0nO`$pe}Sd^DnQV2jsww&ynz)dn`Z3A(iQq)sHc59p%kZIFv zG^Z7IJ`2NadXf{I?iP^t0`mnkGB{gBDii65Rl|Oo?cB!SNXUwGXE&QPw-39Qh$54N zegp2*SG=|9SSN~NWbZMXkap{1|xN4TZ_`RZfmcI@j-FU<`(wLiKOzaIc+ zG*4}e!{_l#sC{Ob65rvx)PLr|A@LVY;TS>07&nPW702oGD$z;9i8S^6D*#4jsntSI zO=tbN{k@*rhBJ0HelrZ%HQ?DsIUSR3U?#*zZwdSd2=IRiIj!h~rYn^OE6|~7up^nP zF&D29yYb8~&w<61Cr)t3ny>Fte2vSs-V!FJkRm(@LkOgbz1HJzf`K^%Pgi62!!svc zy!v0H_smvu{d;gk$=*wlzk$mG!-8hMwn*?#+kzt) z29Y7lp~CPvwk`hdz1L~1tgQII9S=dr`Y0MB;~c_oykT-65&X^G1C?K(y-zh@gZ=oW z{y@YivZw3^mCwU!JR6*U?Ry&R=tq&Z*Ij=+NZ}*MFs}R|C6mhjI>7lw!vUfF=p%pT zi?>WH9U9wPmh&Ib`WTJSh)~efGI0o{lvm)}n3c)}+tu3z-i@vj?`=RRm66H^xJqPI z-?{Q5VXPOu(&&4PHb;{2eQ>I~juJ;c_0hM}*ZZDXPp8WI&(HDdoPzpWrT|q`SW+zw zYZUgGB<<->6Wx39+ny+bY%iLc{fe}#g9b69FBaTYG=-NrO}I20T#{48{gLpN#D{up zs^mz2%ktC8?F)F(i(+elK8Dg5M@Pm!jPiou3;0c#=VLXRLvs;tbrBszUJ`B_;O3zZ zZG-Tynt!6C3wB#UZIA!NtY_f-4kN$d`jWK%sgbX>3)2nhmjg*TOKiC;m|m@`X>+=! ziyZoTpv%U4MZNv#<^(SSF*leztRQZr;M7+M6%q10+rUWAiO+Ef=9~sd2Gvxs_rIkF zy5yq{q|@?ziu)U8*ibd?A5?nIW%7BNupX5Sh6PXh@Apl+LT3CO-{43H>)km^X*HGx zLDX6^@Jl077e)IkJ!FD_;GK3g^pM1Z8?z6Y#*=q6!&_)?=$JBCJ^pCJ+f%3oP?Y>?F92VeGETN75@>}q|5VaR{~p8%vraZ)FpZFEyL7*2wy+R+<-ajY+LGD$Ssgj|>`nEAxm)1a7_vjJ7n z(@2?W7^yZW87SW9K>CX0ZAv>LuaUoB=B!Q&UVjJ<7@%7)7k2479gxQ;YS6Go6->X* z=u8by@gS5+a^SHBlgb>ZZpjemjkq4$OSC+@;LEF8mJ0&O#E223rYDJ3T1I0ZqUpu< zQ@TlWYNzetb@h6k2CwkGt$kAF%4}k`60wWMK8DLR$hi2GA@!qJtEa=y1V?crhLfFv z@^oC)6HaIg;9rg0rAP1>J@65Q$cX+QJ3c7JYv?Y5`e>k$Z}+(QEb|yK^k<>G{In2y zvueTcg|c;DN3j@%E6@`6r2X3DKCl&DN9xa|P)ve@Z$Vn?qxCdpCliw}B#;@}g^7uW z@q*pNF?WNNWYzMxRQ#QZ7mI11hS||QywBApnn~Nn*azq;2ddFz z_rD@(xE(AKDKn!XaSMU_3TS#+enNz}aSyGF>DQ{%P zukcm&=}ep;1_ypL*s>KP{qSzB-a#P#ntqGZDt5(}!o?}e4}s^QNbk`Ax)3#+p5q#j z1ppskaQSc!)|^>Bhhn@{Qb2cXJPMabrpD>*4g5V~apQNS0Ht9@*8MC+n@Qww7 z>e+ojU2%9%Pv7Y85WZik3gCS7NcZ&8lAcFsXhqjQd2~vM3<{k{);m$7A~YCsqVb;6 zgk%Ny8RDn7<$w*?amyb#3WiwAvo)1;b>7(EZmp{Hrk+A-PV0P`+hFR@6FQl%1gXIC zCwwNgwY2FpR0gFjA;PI(!OHjB4~nO)T={Dx--iN0W(U%!j$BrJ=8@m9&Sd}HnN2`d zTe%4-&)>|VssWlxn%$6mwusYV=-H8i3JoGZk$AsmZs=Gh4U_>C#LZZaK2@mU0immA zhF>KN?T~j-9s$A$HXwU-*W{=^-mQMr^FBfw$U`!@v;|Z1dG8P?4n2%zc&YIz)5dg{ z=6?Yq^TqA$LO)){IcVUMA<8Nrmo#?J4TPO9P%pg8ICa2!YV7ZQ{w0I@D^H45WNV_` zc(_L>Ni>z0c=m#AY;l3n$?K9X|-*x>IJYLi7Sw-hElpEIKop)nqn}H>YpN*lWAl zbbVVD5vaM+D00NUAh(kp&G^bc{ElM|U@a7NNH6V}!50BO;dv$1#}7^AUAG84w&Kq$ z9X;2@?XPc$J^gv!hnGX{LLDi|OSSWP#$9BGKTQPM;rRf@a38{Ci(HP~$&E+5)vnFe zE61ftGhYyG&Hw51eC_|8-+6-CgC{4h)jHqwGmT`DFD?k!%+#hc4_x^0wzeUGIxd8O zx(gh}5cDAL`oIugh%EL#JmJ|)jmFBr8E~hXcq}r%W~ynM+F0O~U(@1Tih7cxZyJLu zM~pA!pI{6&A|aIoOfSR@vKL(0CTt}iFwFm@^L$ZS(5M>a$m`{B+BmRAjJDnn$3(LV zt4v!HnbJRh8QgM}*Bg`U?#dDS`6Dl;jJ5gIvHLHHCIc5|u?zNOhuwm9@I2r30><}L z!K&)5EqXJBss5@yVDnvx?bh8PHD95|aDwenB$OwdRQ(gi{SuqA# z$Bkb;2?OgbGgF0XhV<$qn_#Tz2)Njm)Pmba?LdS92G>^#&NKYWFo*1>Bk5Y`gz3L?6 zrHVFxM8>LBq8cNPTA4Q)TRP!hCtIWpf|Yo4F38V~#6Mt#KT<1AjGs1f4N(`+d3CGe zyjApe?#0I|->b#I$~Tm0`d5GKe+^o#PD%3US$L2Pj5r9sVXF&dGj4Thoo=pIVk4E~ z_DGt%8m;OC`Pi;^SryIweLUaYqg7n>yU