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.
2
votes
3answers
1k views
Support for live preview of Haml in Coda or Espresso?
I just discovered the beautiful Haml and Sass, and want to develop in these languages but with live previews. Coda and Espresso both allow for beautiful live previews of HTML files, but previews of an ...
0
votes
1answer
85 views
Navigation bar in Sinatra with Haml
I have a small Sinatra app using haml. I'd like to have a navigation bar on each page that will contain the menu, search, and directional scrolling arrows. Since this will be on every page I assume ...
0
votes
1answer
35 views
Short way to include CSS and javascript tags with HAML
When including javascript or CSS in HAML you would normally have to do the following to include CSS:
%link{:type => "text/css", :rel => "stylesheet", :href => "/css/mycss.css"}
And for ...
0
votes
0answers
49 views
Will Paginate Button Modify with CSS
I am using the will_paginate gem. I want to modify my Button(i.e next, previous, page_links). I have successfully modified the 'next' and 'previous' buttons and their CSS. However, I getting a problem ...
0
votes
1answer
32 views
Basics of Haml-Coffee for Backbone tempting
I'm looking into Haml-Coffee and am a little confused about how to get it working. The github's information didn't seem very clear. Can anyone layout a basic use of it with Backbone for tempting.
0
votes
0answers
23 views
Multi update boolean state with checkboxes (Rails 3)
well this problem I'm sure it isn't difficult at all but being new to rails I'm kinda lost.
After watching Railscasts Episode #52, I went on to make my own publish/unpublish list of slides.
So this ...
0
votes
1answer
44 views
After installing vim-rails plugin I got problems with HAML indentation
I've installed vim-rails plugin from Tim Pope. Everything goes well except that I can't run my Rails project into the browser due to a HAML Syntax Error which is is
Inconsistent indentation: 6 ...
0
votes
2answers
34 views
div title syntax in haml and also incorporate ruby variable inside it
I have trouble converting HTML syntax into HAML.
I know a <div> class can be simply represented by:
.class-name
But, I want to convert the following syntax into HAML and also incorporate a ...
3
votes
3answers
431 views
HAML block returning `0` on yield?
I just upgraded to Rails3, Ruby 1.9.2 and the latest HAML gem.
This code used to work:
= allowed? do
= link_to('New', new_video_path)
Now allowed? yields 0.
It works if I do:
= ...
1
vote
1answer
20 views
Why use 'succeed do' in haml?
I used html2haml.heroku.com and it turned some ordinary strings into the following:
A normal sentence is here
= succeed '.' do
%strong and it is cut off randomly by this succeed
Where the succeed ...
1
vote
2answers
40 views
Can I convert this ERB to HAML? [closed]
Is it possible convert the ERB code below to HAML?
ERB
<div class="users">
<div class="row">
<% i = 0 %>
<% @users.each do |user| %>
<span><%= ...
0
votes
0answers
27 views
Having touble creating HAML Templates using Gurad and Guard-HAML
I am trying use guard-haml but for the life of me I can't seem to get the templating to work.
This is how I am setting up guard-HAML in guardfile:
group :development do
## HAML
guard 'haml', ...
0
votes
1answer
47 views
Ruby interpolation in haml
I've got following code in erb which works fine:
<div id='flash_<%= flash.keys.first.to_s %>'>
<%=h flash[flash.keys.first] %>
</div>
I want to convert it into haml:
...
2
votes
10answers
6k views
Rails 2.3.2 trying to render ERB instead of HAML
Rails is suddenly trying to render ERB instead of Haml and I can't figure out why. I've created new rails projects, reinstalled Haml, and reinstalled Rails.
Here's exactly the steps I take when ...
1
vote
1answer
66 views
“NameError: uninitialized constant Guard::Haml::Bundler”
On my OSX system, I'm trying to use Guard-Haml to auto compile my HAML down to HTML. However, when guard is running, and tries to compile, I get the error below, in fig.1. I've installed Bunder and ...
0
votes
1answer
131 views
How to Generate Views for Devise in HAML
This is mine Gemfile
gem 'haml'
group :development do
gem 'hpricot'
gem 'ruby_parser'
end
I then executed the following statements in a terminal/command window:
bundle install
rails generate ...
2
votes
2answers
903 views
angularjs with client side haml
I've just started using AngularJS with my Rails app and as I'm used to using haml templates within Rails I would like to do the same with AngularJS on the client side. Problem is I don't know where to ...
1
vote
0answers
40 views
HAML text formatting in SublimeText2
"Edit, Line, Reindent" doesn't work for HAML. Is there a command that will auto-format HAML? Any ideas? thanks
47
votes
10answers
15k views
Is there a HAML implementation for use with Python and Django
I happened to stumble across HAML, an interesting and beautiful way to mark up contents and write templates for HTML.
Since I use Python and Django for my web developing need, I would like to see if ...
1
vote
4answers
55 views
Use picture as submit button
I would like to make my submit button for my login page be a picture instead of the grey button. When I use css to do this I get the button on top of the picture. Is there a way to use
= submit_tag ...
0
votes
0answers
25 views
How do I write out from a variable in haml?
I was trying to render a simple page with haml in http://c9.io however the variable replacement seemed to only work as content
so I slid over to http://tinkerbin.com/ and if the set variable syntax ...
0
votes
3answers
37 views
Please, help me buil table using HAML
I trying buld the table. Here is my HAML code:
%table{:border => 1}
%tbody
%tr
%td Question:
- @cust_dashboard.each do |object|
%tr
%td= object.question
%tr
%td Status:
- ...
3
votes
2answers
64 views
Rails NoMethodError for user but db:migrate isn't helping -updated
I am new to rails and I am trying to add a email confirmation upon register. I currently get this error. I tried rake db:migrate but for some reason I cannot get email_activation_token into the user ...
0
votes
0answers
38 views
simple_form helper typeahead not works
I'm try to use bootstrap typeahead in haml, but apparently it not works, please advise, thanks a lots!
in /config/initializers/simple_form_components.rb
module SimpleForm
module Components
...
0
votes
1answer
39 views
How go to controller action correctly, using haml form?
When I go to set_answer action(localhost:3000/staff/set_answer/) from answer action(localhost:3000/staff/answer/) , I get this url:
localhost:3000/staff/answer/set_answer but this is wrong URL . How ...
0
votes
1answer
25 views
Change image_tag to button_to
I'm trying to figure out how to change this code:
%li.input.optional= link_to_remove_association image_tag('minus.png', {:alt => "#{t('blabla.remove_model', model: ...
0
votes
0answers
40 views
how to provide some preset strings in text input in simple_form?
There's a text input in the form. User can input some text there, at same time, I want to provided some most used input texts as well - so User can chose one preset text in case it's same with what ...
0
votes
1answer
89 views
“\xC2” to UTF-8 in conversion from ASCII-8BIT to UTF-8
I have a rails project that runs fine with MRI 1.9.3. When I try to run with Rubinius I get this error in app/views/layouts/application.html.haml:
"\xC2" to UTF-8 in conversion from ASCII-8BIT to ...
3
votes
1answer
37 views
Ruby on Rails - recover password on email NoMethodError
I'm setting up a reset password feature. Upon submission an email will be sent with a reset password link. I'm doing this from scratch as described in railscast episode 274. However, when I submit my ...
0
votes
1answer
25 views
Haml code conversion from Ruby
I have this code mentioned below and I am trying to make it work on a RoR application under haml extension. However I am getting unexpected keyword end. I read over the net and stackoverflow and found ...
-4
votes
1answer
34 views
Can I require Ruby libraries in HAML
Can I do this HAML?
-require 'digest/md5'
.user-info
=@user.name
%img{ :src => "http://www.gravatar.com/avatar/#{Digest::MD5.hexdigest(@user.email)}" }
9
votes
3answers
6k views
Inline ruby in :javascript haml tag?
Hey is there a way I can do this in haml?
:javascript
var Tab = <%= @tab %>
I could just add a helper I guess like:
<script>
var Tab = '<%= @tab %>'
</script>
But ...
0
votes
1answer
44 views
How to escape HTML in haml form?
When i do edit,my haml form renders with the &ersand; value in the text field,I set to escape_html true,But still it renders the value with &ersand; What mistake I have done here. Is ...
-3
votes
0answers
33 views
How to list all objects in a view based on certain conditions?
I need output all items in database table using condition. I need get 'Question','Status','Created_at' fields from Customers table.
Model:
def dashboard(name, email)
@user_questions = ...
0
votes
1answer
31 views
How puts all array items in HAML file?
Cant print all items in array. What I doing wrong ?
=@questionn.each do |item|
=item.to_s
Error is: unterminated string meets end of file, syntax error, unexpected $end, expecting keyword_end
4
votes
6answers
4k views
How can I auto compile my HAML files into HTML files in a tiny project that doesn't run on RoR?
I have only today started playing with compass and haml. While I am quite familiar with the way sass works and I get the idea of what compass is for sass and how to use it, I've hit a little bit of a ...
0
votes
1answer
20 views
Submit Button runs the Create method, not Logon
We implemented a simple login method for our Ruby on Rails project, we have a button on the page to submit for the login information that the user will enter, but instead of pointing to our login ...
0
votes
1answer
18 views
How to include the gem gon in a haml file
In need to put this into my .html.erb file to use gon:
<%= include_gon %>
Now what do I put into my .html.haml file that is the equivalent to this?
4
votes
1answer
365 views
Using Slim or HAML & Sass / SCSS with Node.js?
I have a rather robust project that has all of its templates implemented in Slim and a little HAML. I have been considering starting to push the project over to a Node.js based structure (probably ...
0
votes
0answers
47 views
Trying to delete a specific item from a backbone.js collection, using Haml modals.
Let me start by describing what I am trying to do. I currently have a piece of HAML code that I did not write and am trying to understand. I am currently trying to get a Backbone.js item (a document, ...
10
votes
2answers
2k views
Rails: Is it possible to write view helpers with HAML syntax?
During refactoring it would be quite handy just to copy part of HAML template and paste it to helper's code. Currently in such cases 1) I have to rewrite that part of view from scratch 2) I have to ...
9
votes
4answers
5k views
Partial HAML templating in Ruby without Rails
I really don’t need the overhead of Rails for my very small project, so I’m trying to achieve this just using just plain Ruby and HAML.
I want to include another HAML file inside my HAML template. ...
1
vote
1answer
33 views
'syntax error, unexpected keyword_ensure' on a line that doesn't exist
I'm getting the error: syntax error, unexpected keyword_ensure, expecting $end on a haml template I have, but the extracted source line number it's pulling out is past the end of the file. My code is:
...
0
votes
1answer
119 views
AngularJS render html as string
In my web app, when I go to one of my url, angularjs returns me haml template as a plain text.
But if I go to my root url it works fine. I use Rails 3.2.13, AngularJS 1.1.4, Haml for views.
This is ...
1
vote
2answers
28 views
How get variable value using HAML?
I have a little check in model:
class Customers < ActiveRecord::Base
def check_user_name(name, email)
name = Customers.where(:name => name)
email = Customers.where(:email => email)
...
0
votes
1answer
113 views
How do I display erb code inside haml img src?
<% data.programs.client_name.each_with_index do |c, i| %>
%article
.content
%header
.logo-wrap
%img.client-logo{:src => "<%= ...
0
votes
0answers
28 views
validations not working when create triggered from outside view
I have the following in a view (user.html.haml) that is outside of the apps_controller and App model:
#myModal.modal.hide.fade{"aria-hidden" => "true", "aria-labelledby" => "myModalLabel", ...
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" ...
0
votes
1answer
36 views
Make a link active in HAML with current_page?
So i got this bad code (the link disappears when it's not the root path.):
= link_to "News", root_path, class: "active" if current_page?(root_path)
I would like to make the link's class .active ...
0
votes
1answer
47 views
How do you add an icon to link_to_unless_current using haml?
Is there a way to add an icon to the following link_to_unless_current? I need it to be added in both current and non-current states.
= link_to_unless_current("Stats", ...

