diff --git a/app/assets/javascripts/conference.js b/app/assets/javascripts/conference.js new file mode 100644 index 00000000..dee720fa --- /dev/null +++ b/app/assets/javascripts/conference.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/stylesheets/conference.css.scss b/app/assets/stylesheets/conference.css.scss new file mode 100644 index 00000000..20356924 --- /dev/null +++ b/app/assets/stylesheets/conference.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the conference controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/helpers/conference_helper.rb b/app/helpers/conference_helper.rb new file mode 100644 index 00000000..26a58bdd --- /dev/null +++ b/app/helpers/conference_helper.rb @@ -0,0 +1,2 @@ +module ConferenceHelper +end diff --git a/app/views/conference/show.html.haml b/app/views/conference/show.html.haml index 56e2509f..e25729d1 100644 --- a/app/views/conference/show.html.haml +++ b/app/views/conference/show.html.haml @@ -1,4 +1,4 @@ .row - .col-md-12 - %h1 - = @conference.title \ No newline at end of file + .col-md-12 + %h1 + = @conference.title \ No newline at end of file