Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: remove unused html_css seeds #2689

Merged
merged 2 commits into from
Mar 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
217 changes: 0 additions & 217 deletions db/fixtures/lessons/html_and_css_lessons.rb
Original file line number Diff line number Diff line change
@@ -1,222 +1,5 @@
def html_and_css_lessons
{
'How This Course Will Work' => {
title: 'How This Course Will Work',
description: "Let's get acquainted with what this will look like from here on out.",
is_project: false,
url: '/html_css/introduction.md',
identifier_uuid: 'c1f2931a-573f-478a-8937-1bef56e70b37',
},
'HTML Basics' => {
title: 'HTML Basics',
description: 'A brief refresher on the very basics of HTML.',
is_project: false,
url: '/html_css/html5_basics.md',
identifier_uuid: 'decaf84d-121e-4379-b56c-ef28e36915f6',
},
'Linking Internal and External Pages' => {
title: 'Linking Internal and External Pages',
description: 'When do you link to the relative URL versus the absolute? How do you set up internal links?',
is_project: false,
url: '/html_css/links.md',
identifier_uuid: 'fb36ca2e-329a-4480-868d-4e3a139e225f',
},
'Working with Images, Video and Other Media' => {
title: 'Working with Images, Video and Other Media',
description: "Rich media experiences make your pages come alive but there are some things you'll need to know to avoid slow load times.",
is_project: false,
url: '/html_css/images.md',
identifier_uuid: 'd56f1e3f-90bf-4f23-911c-c53da2b75a60',
},
'Embedding Images and Video' => {
title: 'Embedding Images and Video',
description: "To get some practice with everything you've picked up so far, you'll rebuild YouTube's video page.",
is_project: true,
url: '/html_css/project_media.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: '819dd212-ade2-4267-ba93-9d836a376245',
},
"What's New in HTML5" => {
title: "What's New in HTML5",
description: 'The transition to HTML5 has opened up several new elements and best practices which will make your life easier.',
is_project: false,
url: '/html_css/new_html5.md',
identifier_uuid: 'f211935c-13f0-4a97-83a1-723814d17f0f',
},
'Tables in HTML' => {
title: 'Tables in HTML',
description: "Tables aren't used as much as they once were but can still be a great way to display structured content.",
is_project: false,
url: '/html_css/tables.md',
identifier_uuid: '175a1ed2-aea3-4ca8-b79b-ccceec5977ee',
},
'Ordered and Unordered Lists' => {
title: 'Ordered and Unordered Lists',
description: 'Lists are used everywhere and even in some unexpected places like navigation bars.',
is_project: false,
url: '/html_css/lists.md',
identifier_uuid: 'b0463aea-1105-4e82-a08a-ecc2d5b5f889',
},
'Forms for Collecting Data' => {
title: 'Forms for Collecting Data',
description: 'Forms allow the user to submit data to your application and represent one of the trickiest parts of setting up your HTML structure.',
is_project: false,
url: '/html_css/html_forms.md',
identifier_uuid: 'bc0d62e5-0c99-4d7d-9697-cde39c828d23',
},
'HTML Forms' => {
title: 'HTML Forms',
description: "Get some practice working with different form elements by building Mint.com's signup.",
is_project: true,
url: '/html_css/project_html_forms.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: '0a54d007-c439-4b3c-8b07-2731bd95dcad',
},
'CSS Basics' => {
title: 'CSS Basics',
description: "Even though you're already comfortable with CSS, it's worth revisiting the basics.",
is_project: false,
url: '/html_css/css_basics.md',
identifier_uuid: '44b0f14d-9e25-474a-ae6c-1ce3646c331c',
},
'The Box Model' => {
title: 'The Box Model',
description: 'Even experienced developers often have trouble with the details of the box model, which governs how elements are displayed on the page.',
is_project: false,
url: '/html_css/box_model.md',
identifier_uuid: '4d3f6d4a-0687-4524-b306-d2d6d63cd9ae',
},
'Floats and Positioning' => {
title: 'Floats and Positioning',
description: 'Positioning elements on the page can give you fits, so learning how elements play together is well worth your time.',
is_project: false,
url: '/html_css/floats_positioning.md',
identifier_uuid: '41230d27-791f-4285-af15-86acbee82f5f',
},
'Flexbox' => {
title: 'Flexbox',
description: 'Flexbox layout distributes space along a single column or row. Like float layouts, but more versatile.',
is_project: false,
url: '/html_css/flexbox_layout.md',
identifier_uuid: '5ec131c6-e12e-4972-92c2-5a38ebf4b8e6',
},
'Grid' => {
title: 'Grid',
description: 'Grid divides elements into columns & rows. A modern, powerful way to setout your layout.',
is_project: false,
url: '/html_css/grid_layout.md',
identifier_uuid: 'b9fca114-13f1-429a-b714-f81a0f3a7ca0',
},
'Positioning and Floating Elements' => {
title: 'Positioning and Floating Elements',
description: 'Long content pieces of yesteryear are being replaced with rich multimedia experiences and the Times has led the charge. See if you can apply what you learned about positioning by cloning one of their articles.',
is_project: true,
url: '/html_css/project_positioning.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: '4d066c95-0856-44b2-9356-c79363f21702',
},
'Best Practices' => {
title: 'Best Practices',
description: "It's one thing to have the toolbox and a whole other to understand the best way to use it. We'll explore some of these best practices in this section.",
is_project: false,
url: '/html_css/best_practices.md',
identifier_uuid: 'c9daa698-1b8a-4b8c-bca5-c288d2ce7dbd',
},
'Backgrounds and Gradients' => {
title: 'Backgrounds and Gradients',
description: "Here you'll learn about placing and positioning background images and working with gradients.",
is_project: false,
url: '/html_css/backgrounds.md',
identifier_uuid: 'f99bdc7a-ad74-46c7-9ffd-1eae9abbb5f9',
},
'Building with Backgrounds and Gradients' => {
title: 'Building with Backgrounds and Gradients',
description: 'Apple is a design leader and their homepage can teach you a lot about working with images and gradients.',
is_project: true,
url: '/html_css/project_backgrounds.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: '88dc6852-b174-4ef0-a463-fc3e04e7867c',
},
'Introduction to Design and UX' => {
title: 'Introduction to Design and UX',
description: 'A grounding in some fundamental design definitions and tenets will go a long way.',
is_project: false,
url: '/html_css/design_ux.md',
identifier_uuid: '5bc62668-712d-4640-9caa-4845333702e8',
},
'Fonts and Typography' => {
title: 'Fonts and Typography',
description: "Understanding fonts and typography is far from a design geek's domain -- they greatly affect the ease of use for your pages.",
is_project: false,
url: '/html_css/typography.md',
identifier_uuid: '343ab347-ef28-4dc5-b138-76dda5f74300',
},
'Design Teardown' => {
title: 'Design Teardown',
description: "The first step to understanding design is to train yourself to *see* design, so you'll get a chance to break down one of the hallmark Design publications, Smashing Magazine.",
is_project: true,
url: '/html_css/project_design.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: 'deb32810-8de7-4565-bf9d-be43058f271c',
},
'Responsive Design' => {
title: 'Responsive Design',
description: "Your websites will need to degrade gracefully as your users move from a full browser to an iPad to a mobile phone, and here you'll learn how.",
is_project: false,
url: '/html_css/responsive_design.md',
identifier_uuid: '7ddc07dd-a5a1-4293-8014-19e8c003c659',
},
'Building with Responsive Design' => {
title: 'Building with Responsive Design',
description: "It's time to put your newfound responsive superpowers to use by building The Next Web's responsive homepage.",
is_project: true,
url: '/html_css/project_responsive.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: 'd2b23556-14e1-4926-8fd5-82405a99b511',
},
'CSS Frameworks like Bootstrap and Foundation' => {
title: 'CSS Frameworks like Bootstrap and Foundation',
description: "Now that you've mastered the fundamentals of HTML and CSS, it's time to make your workflow a whole lot easier with CSS frameworks.",
is_project: false,
url: '/html_css/css_frameworks.md',
identifier_uuid: '54229a00-02f2-4aa8-87b3-0d471beb734d',
},
'Animations, Subtle Effects and Compatibility' => {
title: 'Animations, Subtle Effects and Compatibility',
description: 'Dive into some of the more interesting stylistic tools at your disposal like transitions and animations that use only CSS3.',
is_project: false,
url: '/html_css/stylings.md',
identifier_uuid: '98ea952b-8727-45aa-84d9-ed4a0a3d9d6e',
},
'Using CSS Preprocessors to Save Time' => {
title: 'Using CSS Preprocessors to Save Time',
description: "Learn about preprocessors like SASS which can make your CSS act more like real code... which is a good thing because it'll save you time and gray hairs.",
is_project: false,
url: '/html_css/preprocessors.md',
identifier_uuid: 'bb7543e2-77da-42c1-b1cc-616cfe6f878b',
},
'Design Your Own Grid-Based Framework' => {
title: 'Design Your Own Grid-Based Framework',
description: "This final project will require you to apply almost everything you've learned up until now since you'll be building your own version of a grid-based CSS framework. Luckily you can use it on your projects from here on out!",
is_project: true,
url: '/html_css/project_css_frameworks.md',
accepts_submission: true,
has_live_preview: true,
identifier_uuid: '8010443d-8430-413a-ae11-38866ff0bb30',
},
'Conclusion' => {
title: 'Conclusion',
description: "You've found the light at the end of the tunnel.",
is_project: false,
url: '/html_css/conclusion.md',
identifier_uuid: '58c50ae7-76a9-443d-b6df-227ec3e8b11b',
},
# Accessibility section
'Introduction to Web Accessibility' => {
title: 'Introduction to Web Accessibility',
Expand Down