Introduction to Pattern Lab

preview_player
Показать описание
In this episode of front-end tips we are going to look at something called Pattern Lab. It's a way to organise your HTML and CSS components and modules.

In this video we are going to take a look at Node/Gulp version of Pattern Lab, and I'm going to show you how to create atoms, make variants, how to use json data to render your components and at the end how to combine atoms into molecules.
Рекомендации по теме
Комментарии
Автор

Very helpful to get started in my new job, thanks!
And also, the short infos about mustache was helpful to me :)

jangloe
Автор

I found this tutorial which helps me a lot. In the last 5 years, no one create a tutorial like this. Thank You.

manasiroy
Автор

Thank you very much for sharing your knowledge, this video helped me a lot, Pattern Labs are incredible!

nataliaavila
Автор

Thank you for this wonderful tutorial video, Really appreciate this...

sagarkhanpara
Автор

Thank you for the tutorial. It helped me out a lot. Keep up the good work!

warfightermkey
Автор

Thank you very much... really helpful walk through

Ashan
Автор

What version of sublime text and theme are you using?

misaelalvarado
Автор

Thank you for this primer Ivan, it gave me the taste of it.
it would be nice you can show us how to build the bridge to Drupal 8.

Thank you again

dottn
Автор

What program are you using to remind yourself what you have to type next in the terminal?

SamuelCuster
Автор

thanks for the video, I was at the London FrontEnd Meetup (London Ontario) where we saw a demo of PatternLab for Drupal, and I was impressed that once you got your widgets built they could be consumed as full-fledged twig templates.

Are you going to do a Twig PatternLab demo for OctoberCMS?

Thanks so much, great video.

davidlundquist
Автор

gr8 youtube for patternlab. Any chance you could do one on Drupal 8 and patternlab? Will Drupal adopt the patternlab to their new version of Drupal?

csilipo
Автор

Pattern Lab is interesting. Did Tailwind or Bootstrap (or similar CSS frameworks) use this approach for their development?
Thanks for the video!

the_wrong_folder
Автор

how would you use pattern lab with a responsive framework like bootstrap?

kingjames
Автор

Any pattern lab video is available in hindi language? Then give me link...

ayukivlogs
Автор

Thank you for this awesome tutorials.. Can u make another video on this of Druapl + pattern lab..

responsive_man
Автор

Why are the styles not bundled together with the components? having 1 global css file for all of the components doesn't make any sense. How would you set this up so you can include a css file in each pattern. (like how every other component design system works)

drewbefore
Автор

I would like to make atoms, molecules...pages in Twig in PatternLab. Then I want to take these pages and use it in Pico.

Will that atoms (made in PatternLab) still be function in Pico?

TimcoVanco
Автор

Thank you for the tutorial, but what's the benefit of using Pattern Lab it seems waaste of time, am i wrong or i just didn't its utility

MahranMeher
Автор

Nice.. you should be presenting at Baltimore DrupalCon

schiavone
Автор

Around minute 20, the "for each" loop on twig would be:
<ul>
{% for item in list%}
<li>{{ item.name }}</li>
{% endfor %}
</ul>

dottn