Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Erubis debe adelgazar

Erubis debe adelgazar

Mostrar cuán genial es la gema slim.

Avatar for Gabriel Aramburu

Gabriel Aramburu

November 28, 2012
Tweet

More Decks by Gabriel Aramburu

Other Decks in Programming

Transcript

  1. QUE ES? Y POR QUE USARLO? Es un lenguaje de

    plantillas, cuyo objetivo es reducir la sintaxis de las partes esenciales sin llegar a ser críptico.
  2. <section class=”container”> <h1>Soy un título</h1> <h2>Soy un Subtítulo</h2> <div class=”content”>

    Soy un contenido </div> </section> <section class=”container”> <h1><%= post.title %></h1> <h2><%= post.subtitle %></h2> <div class=”content”> <%= post.content %> </div> </section> section.container h1= post.title h2= post.subtitle .content = post.content Imprimiendo algo SLIM ERB HTML
  3. <% if items.any? %> <table id="items"> <% for item in

    items do %> <tr> <td class=”name”><%= item.name %></td> <td class=”price”><%= item.price %></td> </tr> </table> <% else %> <p>No items found.</p> <% end %> <div class=”footer> <%= render 'footer' %> <%= “Copyright &copy; #{year} #{author}” %> </div> - if items.any? table#items - for item in items do tr td.name = item.name td.price = item.price - else p No items found. .footer = render 'footer' | Copyright &copy; #{year} #{author} Quiero mas... SLIM ERB