I'm coming from a Rails background and trying to learn the Phoenix Framework. In Rails I used to do this in my footer so that the year is always up to date:
<%= Date.now.year %>
What is the Phoenix/Elixir equivalent? How can I show the current year in the view?
Thank you for your time.