In my rails application, I want to connect the FB OG Meta Tags dynamically with the page that the user is currently on. I feel like this should be straightforward, but can't get it to work properly.
For example, I have "Idea" Pages, on which there is an Idea title and an Idea Description.
Currently, in my Application.html.erb file I have this (and am getting a NoMethodError for title):
<meta property="og:title" content= <%= "#{@idea.title.titleize}" %>/>
<meta property="og:url" content= <%= "http://myurl.com/ideas/#{@idea.id}" %>/>
<meta property="og:description" content= <%= "#{@idea.short_description}" %>/>
Is there an issue with my syntax? With the availability of these instance variables? I'm not sure I totally understand how this works. Thanks!