16 lines
563 B
Plaintext
16 lines
563 B
Plaintext
- @title = "#{App.title} - #{h(@course.full_name)}"
|
||
- @location = capture do
|
||
= link_to(App.title, index_url, :accesskey => 'z') + "›"
|
||
= link_to("Disciplinas", courses_url) + "›"
|
||
= link_to(h(@course.full_name), course_url(@course)) + "›"
|
||
= link_to("Wiki", course_wiki_url(@course))
|
||
- if @wiki_page.title?
|
||
= "›"
|
||
=link_to(h(@wiki_page.title), course_wiki_instance_url(@course.to_param, @wiki_page))
|
||
- @title = @title + " - #{h(@wiki_page.title)}"
|
||
|
||
- @left_panel = render 'courses/left_panel'
|
||
- @content = yield
|
||
|
||
= render 'layouts/base'
|