1
1

More than 3 years have passed since last update.

【Rails】hamlで画像を呼び出す

Last updated at Posted at 2020-05-09

準備

表示したい画像:test.png

実装

1:app/assets/images/ に画像を置く。 例) app/assets/images/test.png
2:呼び出し

test.html.haml
 = image_tag '画像へのパス'
 = image_tag 'test.png', class: '', heigth: '', weigth: ''
#今回はimages直下のに画像を置いたため、パスは上記のようになる。
1
1
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
1
1