Preguntas etiquetadas con haml

5
Agregar clase si la condición es verdadera en Haml
Si post.published? .post / Post stuff De otra manera .post.gray / Post stuff He implementado esto con rails helper y parece feo. = content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do / Post stuff Segunda variante: = content_tag :div, :class => "post" + (post.published? ? "" : …
155 ruby  haml 



13
Haml: controla los espacios en blanco alrededor del texto
En mi plantilla Rails, me gustaría lograr HTML final a este efecto usando HAML: I will first <a href="http://example.com">link somewhere</a>, then render this half of the sentence if a condition is met La plantilla que se acerca: I will first = link_to 'link somewhere', 'http://example.com' - if @condition , then …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.