14 lines
340 B
Text
14 lines
340 B
Text
= content_for :brand do
|
|
= link_to @conference.title, conference_url(@conference.short_title), class: 'navbar-brand'
|
|
%div#program
|
|
= render 'program'
|
|
%div#registration
|
|
= render 'registration'
|
|
%div#callforpapers
|
|
= render 'call_for_papers'
|
|
|
|
|
|
:javascript
|
|
$(document).ready(function(){
|
|
$('#content').removeClass('container');
|
|
});
|