Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I do this in Jade?

Tags:

express

pug

I'm trying to translate this in my jade template but can't. Any help?

<span class="riciclame_piccolo">
   ricicla
   <span class="rosa">
      .me
   </span>
</span>
<span class="footer_p"> 
   &nbsp&nbsp è un'idea di <a href="http://www.ottoquattro.com" target="_blank">OttoQuattro Web & Video Agency</a>
</span>

Thanks!!

like image 409
Secco Jones Avatar asked Aug 23 '12 10:08

Secco Jones


1 Answers

Something like this...

span.riciclame_piccolo ricicla
    span.rosa .me
span.footer_p &nbsp&nbsp è un'idea di 
    a(href="http://www.ottoquattro.com", target="_blank") OttoQuattro Web & Video Agency​
like image 127
Split Your Infinity Avatar answered Jan 01 '23 09:01

Split Your Infinity