「Ruby/rails/titleを追加」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==actionごとにtitleを変更== app/views/layouts/application.html.erb <title><%= !@title.nil? ? @title : "Typetoon" %></title> def index @title = "title1" end」) |
(相違点なし)
|
2017年11月17日 (金) 09:07時点における版
actionごとにtitleを変更
app/views/layouts/application.html.erb
<title><%= !@title.nil? ? @title : "Typetoon" %></title>
def index
@title = "title1"
end