If a partial is in the same folder as another .eex
file, you can just run render "filename.html"
, but what if it's in a subfolder? In my case, I have a bunch of partials containing the HTML for some SVG icons. I don't want those files cluttering up the main template directory for my controller (I'd rather have them in templates/pages/icons
than templates/pages
). If they're not in the same directory as the .eex
file that's rendering them, though, referring to them by name doesn't work, nor do things like render "icons/filename.html"
. What's the proper way to handle this?
You have to first modify your web/web.ex file to let it know to include subdirectories:
use Phoenix.View, root: "web/templates", pattern: "**/*"
After making this change you can just use relative paths like so: "icons/filename.html"
Hope that helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With