views:

82

answers:

1

Hi All,

In my next rails project I want to use liquid pages (so that my graphic designer can do his stuff without bothering be :D) By my question is

will i be able to use

render_component and render :partial commands inside my liquid layout. If possible how

thanks in advance

cheers, sameera

+1  A: 

Liquid provides an include tag you can use inside a template to include external templates. However, it isn't equiparable to the render component or partial feature in Rails.

Also, render component has been deprecated times ago. You shouldn't use it.

Simone Carletti