Skip to content

Instantly share code, notes, and snippets.

@slb235
Created September 27, 2012 17:15
Show Gist options
  • Select an option

  • Save slb235/3795212 to your computer and use it in GitHub Desktop.

Select an option

Save slb235/3795212 to your computer and use it in GitHub Desktop.
link von leerzeichen weg
entweder du nimmst den link vom icon weg
.accordion-heading
i(class="icon-#{module.icon}")
|
a.accordion-toggle(data-toggle="collapse", href="##{module.type}") #{module.title}
oder du brauchst zwei a tags
.accordion-heading
a.accordion-toggle(data-toggle="collapse", href="##{module.type}")
i(class="icon-#{module.icon}")
|
a.accordion-toggle(data-toggle="collapse", href="##{module.type}") #{module.title}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment