Just Use ERB
Learn how to use ERB in a Rails application.
We'll cover the following...
Templating mechanism in Rails
The default templating mechanism in Rails is HTML using ERB (which we will refer to simply as ERB even though ERB is a general templating system that can template anything). Some developers strongly believe ERB to be problematic and seek to use alternatives like HAML or Slim. ...