ActionView::Template::Error (undefined local variable or method `root_path' for #<#<Class:0x00007faac77f0958>:0x00007faac77ea238>
Did you mean? font_path):
root_path じゃなくて font_path じゃない?って言われました。
Topへのリンク設置でroot_pathを指定して表示させたい。
ActionView::Template::Error (wrong number of arguments (given 0, expected 1..2))
に変化してしまった。てかroot_pathって何だ?ってなったので調べた。
じゃあルートを示す定義でエラーしてるからルーティングじゃない?
と思い確認したら
ルーティングが定義されていないことに気づけました。
root to: 'articles#index’
を定義して確認したらしっかりと表示させることできました。