LoginSignup
13
18

More than 5 years have passed since last update.

link_to メソッド+ icon のhaml化 - haml化メモ

Last updated at Posted at 2016-01-10

link_toメソッド + icon をhaml化してみた

元のhogehoge.html.erb
<div class="btn-group" style="margin-left:10px; ">
<%= link_to new_user_registration_path, class: "btn btn-dark btn-sm" do %>
    <i class="fa fa-user" style="padding-right: 10px"></i>会員登録
<% end %>
</div>
生成されたhtml.haml
.btn-group{:style => "margin-left:10px; "}
  = link_to new_user_registration_path, class: "btn btn-dark btn-sm" do
    %i.fa.fa-user{:style => "padding-right: 10px"}>
    会員登録

erb=>hamlは下記を参考にさせていただいています。
http://qiita.com/m_doi/items/1f01fd2b1a52c2c43f1f

13
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
18