I am stuck trying to figure out how to get my models to access the root view folder in sinatra.
File Structure
config.ru
app.rb
models/
song.rb
views/
song/
song.slim
edit_song.slim
layout.slim
login.slim
When I go to view the '/song' route via song.rb, the controller tells it to render the song.slim view. However, when I do that, it ends up looking for app/models/views/song/song.slim instead of app/views/song/song.slim which is the one I want.