Currently, I am developing a simple Rails application (using Rails version 4.1) and I am looking to incorporate a static page into it. The static page is structured as follows:
| |- index.html |- css folder |-- (various css files) |- js folder |-- (some js files) |- images folder |-- (different images)
My ultimate goal is to set this static page as the homepage of my application.
I have attempted to include it in my application by using the 'layout' keyword in the controller and placing the html file in the 'app/views/layout' directory. However, despite successfully rendering the 'index.html' file, it lacks any styling and appears as plain text. I also experimented with the HighVoltage gem, which produced similar results.