It looks like most of RoR web applications have the same look&feel, and
I just wonder if there is any common web design template for RoR that I
can use as I develop the application.
I am not a web designer, so I need to get some nice-looking premade web
template for this RoR.
It looks like most of RoR web applications have the same look&feel, and
I just wonder if there is any common web design template for RoR that I
can use as I develop the application.
I presume you are referring to the “scaffolding” look and feel. It
really has a spartan look and feel. And that’s by design. Rails is not
meant to be a wyswig or CMS with prebuilt templates like Drupal or the
like. Consider it to be a very,very good web software tollbox. You
don’t need to go to home depot to build anything. You have all the
tools you need to build a world-class website with Rails. Beyond the
scaffoldin, there are no prebuilt views.
You might take a look at ActiveScaffolding if you want more fancy out
of the box (but there is a little learning curve there).
The easiest thing to do is find a table/css design you like somewhere
and drop it in a layout and put that layout in your controller. Then
you’ll have a general look and feel without a ton of effort. This is
what I usually do when I am prototyping and want to share with others.
I also find a simple menu-ing system necessary out of the box which
Rails doesn’t ship with either. This is pretty simple and can get you
going:
Could you tell me how to get table/css design layout from the site? Is
there any tool? - sorry, I have never done web front-end programming
before.
Thank you again!
blasterpal wrote:
Jae,
I presume you are referring to the “scaffolding” look and feel. It
really has a spartan look and feel. And that’s by design. Rails is not
meant to be a wyswig or CMS with prebuilt templates like Drupal or the
like. Consider it to be a very,very good web software tollbox. You
don’t need to go to home depot to build anything. You have all the
tools you need to build a world-class website with Rails. Beyond the
scaffoldin, there are no prebuilt views.
You might take a look at ActiveScaffolding if you want more fancy out
of the box (but there is a little learning curve there).
The easiest thing to do is find a table/css design you like somewhere
and drop it in a layout and put that layout in your controller. Then
you’ll have a general look and feel without a ton of effort. This is
what I usually do when I am prototyping and want to share with others.
I also find a simple menu-ing system necessary out of the box which
Rails doesn’t ship with either. This is pretty simple and can get you
going: