I am having doubts about best practices using the methodology GOOD , see below an example (example with Jade):
nav(class='c-ngroup')
div(class='wrap')
div(class='row')
div(class='col-md--2')
h4(class='c-ngroup__title') Promote
ul(class='c-ngroup__list')
li(class='c-ngroup__list__item')
a(href='#', class='c-ngroup__list__link') Event
li(class='c-ngroup__list__item')
a(href='#', class='c-ngroup__list__link') Place
li(class='c-ngroup__list__item')
a(href='#', class='c-ngroup__list__link') Promotion
Notice that I'm nesting two levels of elements c-ngroup__list__item
, would that be a bad practice? Is there any better way to do this?
Thank you.