Radin Reth

Results 7 comments of Radin Reth

Maybe you have to tell rails what path you are looking for: let's try this `prepend_view_path ` ``` class ArticlesController < ApplicationController prepend_view_path 'app/views/my_custom_theme_dir' ... end ```

Sorry for late reply, I think gem [thems_on_rails](github.com/chamnap/themes_on_rails) can solve your problem, Feel free to try it.

Hi @sdilshod, Assume that I have a resource called `articles` In `config/routes.rb` ``` Rails.application.routes.draw do resources :articles end ``` Then in liquid template: ``` {{ 'link name' | link_to: request.articles_path,...

Sample code available [here.](https://github.com/radin-reth/liquid-test)

It's a bit tricky @sdilshod , I could not find a way to do it beside build a url by hand like what you already to, because liquid template accept...

@srobertson421 , Your solution is pretty nice, but still forces me to pass property `icon` otherwise I will get error, so I do a little patch hope it helps: ```...