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