David
David

Reputation: 54

Link tag in Sinatra

Ok, I am brand new to ruby and Sinatra and I am embarrassed to say I cannot for the life of me find out how to use a link tag in Sinatra. I just need to link, from my index.erb, to a static page, about.html. <a href="about.html">About</a> is not working. How can I do this? Thanks a lot!

Upvotes: 0

Views: 1365

Answers (1)

cjn
cjn

Reputation: 1461

I think you're looking for something like:

<a href="/about.html">About</a>

You're going to want to locate this about.html file in the /public folder of your application. If you want to overwrite using that location for another one, you can do so with :public_folder and is fairly well described at: http://www.sinatrarb.com/configuration.html

I hope that helps.

Upvotes: 1

Related Questions