From 5da601c2351b68c7128b64aca86340790956d261 Mon Sep 17 00:00:00 2001 From: Gopesh Tulsyan Date: Thu, 8 May 2014 18:38:14 +0530 Subject: [PATCH] Fixed initial splash page view --- app/assets/javascripts/conference.js | 2 ++ app/assets/stylesheets/conference.css.scss | 3 +++ app/helpers/conference_helper.rb | 2 ++ app/views/conference/show.html.haml | 6 +++--- 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 app/assets/javascripts/conference.js create mode 100644 app/assets/stylesheets/conference.css.scss create mode 100644 app/helpers/conference_helper.rb 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