13 lines
452 B
Plaintext
13 lines
452 B
Plaintext
- @title = "#{App.title} - #{h(@course.full_name)} - Notícias"
|
|
- @location = capture do
|
|
= link_to(App.title, index_url) + "›"
|
|
= link_to("Disciplinas", courses_url) + "›"
|
|
= link_to(h(@course.full_name), course_url(@course)) + "›"
|
|
= link_to("Noticias", course_news_index_url(@course))
|
|
|
|
- @left_panel = render 'courses/_left_panel'
|
|
- @right_panel = render 'courses/_right_panel'
|
|
- @content = yield
|
|
|
|
= render 'layouts/base'
|