〜解決したいこと〜
views/messages/index.html.hamlに
下記二つのファイルを部分テンプレートしたい。
❶views/messages/_side_bar.html.haml
❷views/messages/_main_chat.html.haml
〜現状〜
表題の通り部分テンプレートをしたいのですが、
index.htmlhamlはj下記のような画面になります。
イメージ説明
〜行ったこと〜
views/messages/index.html.haml
.wrapper
= render "side_bar"
= render "main_chat"
views/messages/_side_bar.html.haml
views/messages/_main_chat.html.haml
があります。
この二つのファイルをindex.html.hamlに表示させたい。
app/assets/stylesheets/application.scss
@import "reset";
@import "modules/messages";
@import "font-awesome-sprockets";
@import "font-awesome";
app/assets/stylesheets/modules/_messeges.scss
- {
box-sizing: border-box;
}
ターミナル
Last login: Tue Apr 14 22:22:35 on ttys000
yoshidashundai@yoshidaayataAir nextchat-space %
yoshidashundai@yoshidaayataAir nextchat-space %
yoshidashundai@yoshidaayataAir nextchat-space %
yoshidashundai@yoshidaayataAir nextchat-space % rails s
=> Booting Puma
=> Rails 5.0.7.2 application starting in development on http://localhost:3000
=> Run rails server -h
for more startup options
A server is already running. Check /Users/yoshidahayata/Desktop/projects/nextchat-space/tmp/pids/server.pid.
Exiting
yoshidashundai@yoshidaayataAir nextchat-space %
よろしくお願いします????
あなたの回答
tips
プレビュー