HAML is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code. It can be used as a standalone HTML generation tool or as a template rendering engine in a web framework such as Ruby on Rails or Ramaze.

learn more… | top users | synonyms

0
votes
1answer
77 views

display search results in haml syntax

I am new to ruby and am having trouble implementing the view for search in haml syntax. Here is my controller code for search which works fine app/controllers/search def search(text) ...
0
votes
1answer
110 views

Pass Arguments to HAML Partial

Using rails 3.2.11, and whatever the newest version of HAML is, I've been trying to pass a block to a HAML partial. I suppose I could use a variable in the HAML file, and then assign that variable ...
0
votes
2answers
109 views

haml and ruby on rails date of birth date field syntax

SO I have been learning ror and trying out some form examples. Most of the examples in the web is in erb format and my files are in .haml format. I am trying to a write a static dob field where it ...
2
votes
1answer
41 views

How to escape a comment in haml?

I have the following line containing a regex using RoR in a view (show.html.haml): - unless @article.content =~ /find(#{image.id})/ The problem is that the regex is not evaluated since it's ...
0
votes
2answers
380 views

bootstrap modal hide not working properly [duplicate]

.row .span12 .front-heading{:style => "width:80%;margin: auto;border-bottom: 2px dotted grey;"} The most innovative fundraising program since thin, minty cookies. .modal#myModal.hide.fade ...
0
votes
1answer
51 views

Hamlpy and Inclusion tag messing up divs

Thanks for taking the time to look at my question. I have a hamlpy template that calls an inclusion tag that renders another template. Both the parent template and the included one are indented ...
1
vote
1answer
135 views

converting html to haml

There is a projects.html file above.This file works successfully but when I convert this html file to haml file with http://html2haml.heroku.com/ , haml file doesn't work. Can you see any difference ...
0
votes
2answers
238 views

Rails and haml, how to add id and class selectors to link_to helper?

I've been looking around how to add an id selector to a link_to helper using haml, is that possible? a .haml - %a#booked{:href => "index.haml"} Link 1 b .html.erb - booking.html.erb - ...
-1
votes
1answer
83 views

User authentication Bcrypt and Sinatra - LINK - Please help explanation needed

http://www.128bitstudios.com/2011/11/21/authentication-with-sinatra/ Simple and nice Sinatra BCrypt authentication system - I would appreciate an explanation =) I found this very nice article on a ...
0
votes
2answers
325 views

Get save checkbox values in haml even if submit button not selected

This is SaaS ("Rotten Potatoes") training question that has been discussed many times last year but I don't seem to find answer to this. I have a form with checkboxes for ratings that generate hash ...
0
votes
1answer
30 views

How can I embed errors from Haml::Engine in a web page in production on Heroku

Part of my app is accessible to me alone when I login as admin. In documents#new and documents#edit, I have a <textarea> in a form which I use to write and edit structured text using HAML. I ...
0
votes
1answer
87 views

If conditions as inline style

I am trying to add an inline-style to an element with HAML. Somwhow, the style does not show up inside the tag - any idea whats wrong with it? %span.proceed-to-checkout.four.columns.offset-by-six{ ...
0
votes
1answer
817 views

Twitter Bootstrap Table Column - 1st Table Shorter Column Widths than 2nd Table

I am trying to use .haml with Twitter Bootstrap to create two tables. The issue is that my 2nd table renders nicely, but my first table, which has much less text, appears to stretch endlessly across ...
0
votes
1answer
66 views

using an %a{:href => “a uri”}some_text tag in haml

How come when I use the tag: %a{:href => "a uri"}some_text in a Haml file in my Ruby on Rails project on a Heroku server I get an error?
0
votes
1answer
108 views

Using Haml with the inline-block spacing gaps

So I read the solutions regarding making the spacing go away when using inline-block as opposed to floats: display: inline-block extra margin and ...
0
votes
1answer
37 views

Is there an equivalent of raw for displaying haml stored in an instance variable

In /views/documents/show.html.haml, I have: = raw @document.content If @document.content stores HTML, such as <p>foo</p>, I see "foo" formatted as a paragraph. But if @document.content ...
0
votes
0answers
56 views

How to recursively search for HAML files and convert to parent directory

For Octopress, I want to convert all of the haml files in the 'source' directory into html. Tried to rewrite the following code to do so without avail. Below code doesn't work for me because I'll ...
1
vote
2answers
83 views

ActionView Ruby Code Not Evaluating in HAML

I have the following Rails code in a HAML view: = form_tag ..... do - @someArray.each do |age| = age = check_box_tag "ages[#{age}]", @keys.has_key? age ? checked : unchecked What I'm ...
-1
votes
1answer
60 views

Is <a href> the only way to link to a web address? [closed]

I am working with Sinatra and using %a{:href => "some/path/here"} to link to various part of my application, however, that brings several css problems when styling the app. Does there exist any ...
0
votes
0answers
102 views

Convert from erb to haml of spree-master/core/app/views/spree/address/_form.html.erb [closed]

Getting problem when converting from erb to haml of spree-master/core/app/views/spree/address/_form.html.erb File is here: ...
1
vote
2answers
128 views

if condition in haml view

I want to set a :data attr if a condition is met. In this case a user should have a role. So it's a boolean statement. Let me give an example. - @data = 'contract-confirm' .create_button= link_to ...
0
votes
1answer
170 views

How do I increment a Twitter Bootstrap progress bar in HAML?

I am just starting to learn building small web apps using Sinatra, HAML and Twitter Bootstrap. In my application, an action takes place every 500 seconds. I would like to place a progress bar on my ...
0
votes
1answer
60 views

Markdown in Rails apps

I have written my plain page content in markdown files such as content_home.md and content_other_page.md I am using haml for my templates and when I use the :markdown filter and paste my markdown in, ...
0
votes
2answers
73 views

Nil object when you didn't expect it for contact form_for

I'm trying to add a contact form for my Rails 3.1.3 application using this tutorial. However at the end when I try to load my contact page, I get the error: You have a nil object when you didn't ...
0
votes
0answers
54 views

f.label not working with block in haml

I have following haml code form_for @user_notification_settings_form do |f| = f.label :follow do div dummy But it generates <label for="user_notification_settings_form_follow"> ...
2
votes
1answer
53 views

Awestruct navigation: sort pages by category

What I'm trying to print out is a ul of lis, each containing all the pages which have a given tag (set in the metadata) If not familiar with Awestruct, it's similar to Jekyll and page metadata can be ...
1
vote
1answer
198 views

HTML2HAML command not found

I have installed the gems "haml" and "haml-rails". Now i want to convert my erb files to haml with that command: find . -name '*erb' | \ xargs ruby -e 'ARGV.each { |i| puts "html2haml -r #{i} ...
0
votes
0answers
161 views

html template haml/jade with PHP?

I used node.js with jade, but I have to change it into PHP. Is it possible to use haml or jade template with PHP framework? or Is there any other similar html template system?
0
votes
1answer
237 views

Haml interpolation with underscore template variable

I am trying to output an underscore template variable in my haml template but I'm not having any luck. The HTML is not being escaped so I can't seem to figure out why the underscore variable isn't ...
0
votes
4answers
76 views

Align input and button on one line

I have such table part: <td> <form accept-charset="UTF-8" action="/line_items" method="post"> <input class="qnt_to_cart2" id="110040Q" name="cart_quantity" ...
1
vote
1answer
100 views

Html pattern not null and not negative

How can i write such pattern: 1) Not negative: so only numbers from 1 to 999 2) Null Can't be first char 3) Non empty field For example: 01, , -1, 1500, abc, etc - are false Now i have only ...
0
votes
0answers
45 views

Client-Side MVC: how to best handle same templates in different engines

I've been recently experimenting with one of the widely recommended MVC client-side frameworks (Backbone, in this case). I find it quite nice, but I have an issue with it: suppose I'm building a list ...
0
votes
1answer
57 views

haml and javascript

i have a show.html.haml file that calls a display.js in my controller I have a variable @category how would I use @category in my display.js file that's being used by view? Thank you!
2
votes
1answer
73 views

Have an a href link to a variable twitter handle in ruby on rails

I'm trying to make a link that goes to a user's twitter account dynamically via a Twitter handle. The problem is the Twitter handle is just @variablehandle, not a full site link. I figured out how to ...
0
votes
0answers
59 views

Necessary to unload images after view scrolls out of view

I have multiple views loaded on a main scrollable page. addOneMuse: (muse) -> view = new Onethingaday.Views.Muses.IndexView model: muse source_section: "main_feed" @subViews['muse-' + ...
0
votes
1answer
99 views

How to optimize loading of images on web/mobile web when scrolling

I am now loading all the images via my template when the image loads //For example, I will just pass the image url into the tempate when the page renders %div{class: "img_container <%= ...
0
votes
1answer
76 views

index.js.haml is not loading

I am using inherited_resources and in my controller I specified respond_to :js, :only => [:index]. But when I trigger an oncange event for dropdown a ajax url that hits the controller index method ...
0
votes
1answer
27 views

Force to end n if in haml

I have an if: -12.times do |control| -dia += 1 -if control == 1 %a#hoy{:href=>'/dias/algo'}< -else %a{:href=>'/dias/algo'}< =dia ...
5
votes
3answers
234 views

haml rails forms - html appearing raw instead of rendering as html

I'm using haml 3.1.4 and haml-rails 0.3.5 The issue I'm having only occurs on the server (production) and locally (test) but not in development (both appear to be using the same gem versions) ...
0
votes
0answers
70 views

Error 'block_is_haml?' Haml = f.label in Ruby 1.9

app/views/users/_form.html.haml, line 10 = form_for @user do |f| - if @user.errors.any? #error_explanation %h2= "#{pluralize(@user.errors.count, "error")} prohibido que este usuario se ...
0
votes
1answer
102 views

Prevent rails form submission on ng-invalid

I have a form, generated through rails helpers, that has some AngularJS on it. = form_for some_models do |f| %fieldset.form-horizontal %div.some-class #And so on and so forth ...
0
votes
1answer
129 views

How Do I Use Localization (i18n) with Haml in Middleman

The examples on Middleman's web page are in ERB, but I like to use HAML. http://middlemanapp.com/advanced/localization/ This is their example localization YAML file: --- es: hello: "Hola" And ...
0
votes
4answers
78 views

rails if statement, if no records found

I'm trying to create an if statement so that if there are no records found, a default message is displayed. I currently have this: - if @n == nil || @n =="" welcome - else - @n.each do |n| ...
4
votes
2answers
88 views

HTML is to HAML as XSLT is to …?

I just discovered HAML, and love its succinctness and readability. Is there any kind of equivalent for XSLT? In particular, I would love something that makes it easier to distinguish between the ...
3
votes
1answer
924 views

How to pre-select checkbox in angularJs with ng-checked

I seem to cannot get this to work. So I have a bunch of genres of movies which I want them to be checked if those are the genres in user database. This is my code %section(ng-controller="UserCtrl" ...
0
votes
1answer
96 views

Heroku does not read application.html.haml

I got a simple 'Contact Us' site that local server displays correctly. It has and application.html.haml inside views/layouts with a small header and footer. This 'yield' a container with the contact ...
0
votes
2answers
72 views

Why is HAML swapping tag positions?

This HAML (with chained helpers): - haml_tag :a, helper_method_1(local1, local2).merge( helper_method_2 local3, local4 ) do %div{ style: helper_method_3(local5, local6) } %span= local7 ...
-2
votes
1answer
57 views

How to break the line inside the brackets [closed]

I want to be able to break the line inside the brackets without having the "inconsistant brackets" error. Here's a example: select.someclass.something{data: {max_amount: o.max_amount_clean, ...
2
votes
1answer
320 views

Working with CodeKit and haml/PHP

in my latests projects I have use Rails. Now I have to do something in PHP (which I actually hate, or love too much Ruby syntax). So now I am very used to work with Sass and haml, which I also love. ...
0
votes
0answers
362 views

Alternate bootstrap table row coloring doesn't work

I'm trying to color some rows in a rails table based on a single attribute. I'm only specifying that so people don't get confused, thinking I'm trying to alternate the colors in my table. That's not ...

1 3 4 5 6 7 33