haml 導入
hamlとは
Hamlとは、HTMLよりも簡単に書くためのビューテンプレートエンジンです。公式サイトによると「マークアップは美しくあるべき」という原則に基づいて開発されました。Hamlを使用することで、「綺麗に」、「読みやすく」、「生産的に」ビューを作成することができます。
gem 追記
gem 'haml-rails'
bundle installを実行。
拡張子がerbのファイルをhamlに変換
ターミナルで下記のコマンドを実行すれば一括で変換できます。
$ rails haml:erb2haml
コマンドを実行すると途中で
Would you like to delete the original .erb files? (This is not recommended unless you are under version control.) (y/n)
アプリケーションの初期段階であるため、yを選択しましょう。すると、デフォルトで作成されたerbファイル(例えば、application.html.erbなど)がhamlに変換されていることが確認できると思います。
application.html.hamlを編集
!!!
%html
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%title ChatSpace
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag 'application', 'data-turbolinks-track' => true
= csrf_meta_tags
%body
= yield
mailer.html.hamlを編集
!!!
%html
%head
%meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"}/
:css
/* Email styles need to be inline */
%body
= yield
mailer.text.hamlを編集
= yield
mailer.html.hamlとmailer.text.hamlは不要なファイルである場合は、削除しましょう。
Author And Source
この問題について(haml 導入), 我々は、より多くの情報をここで見つけました https://qiita.com/maedatakumi/items/f443700d9d71e9cb5535著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .