Hello all, 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. How did you accomplish this? Thank you all! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
2008/9/19 Jae Lee <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>:> > Hello all, > > 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.You can search for good templates at http://www.opendesigns.org/ or http://www.nuviotemplates.com/> I am not a web designer, so I need to get some nice-looking premade web > template for this RoR. > > How did you accomplish this?It''s just a big coincidence since many RoR developers do Web 2.0 applications. Symfony developers (i am one) also appear to do the same. Regards, -- Rodrigo Fuentealba http://www.thecodekeeper.net/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
not rails specific but you should check out Blueprint http://github.com/joshuaclayton/blueprint-css/tree/master On Sep 19, 4:35 pm, Jae Lee <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hello all, > > 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. > > How did you accomplish this? > > Thank you all! > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Blasterpa, 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: > > http://blog.seesaw.it/articles/2007/08/18/tabnav-retires-enter-widgets > > Hank-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
http://github.com/joshuaclayton/blueprint-css/tree/master http://wwwopendesigns.org/ http://www.nuitemples.com/ http://www.freecstemplates.org Don''t know it the above sites will help... On Sat, Sep 20, 2008 at 11:05 AM, Jae Lee <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>wrote:> > Blasterpa, > > 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: > > > > http://blog.seesaw.it/articles/2007/08/18/tabnav-retires-enter-widgets > > > > Hank > > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thank you all! cherrian harada wrote:> http://github.com/joshuaclayton/blueprint-css/tree/master > http://wwwopendesigns.org/ > http://www.nuitemples.com/ > http://www.freecstemplates.org > > Don''t know it the above sites will help... > > On Sat, Sep 20, 2008 at 11:05 AM, Jae Lee-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---