Philip Gavrilos wrote:
> 
> hi!
> 
> I want to have different titles in my weblog.
> 
> in my app/views/layout/post.html.erb
> 
> i have this in head:  <title><%= controller.action_name %> :: webstic
> blog :)</title>
> 
> thats fine if im in page that listing my blog articles!
> 
> but if i chooce to view a page i want the title.post  in my <title>
> 
> how i can do that?
> 
> thanks
> 
> philip.g


i found it!  sorry for the rush post!

i could help im writing what i've did:


in my  app/views/layout/posts.html.erb

<title><%= yield :title %>:: my fisrt rails blog :)</title>


in my app/views/posts/index.html.erb

<% content_for :title do %>
  <%= controller.action_name %>
<% end %>

and my _post partial

<% content_for :title do %>
  <%= post.title %>
<% end %>


this works for me :)

-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to