I have some redundant metadata tags in my <head>
that I'm not sure I need, nor do I know if they are in the right order. I am using the gem "meta-tags"
<%= csrf_meta_tags %>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<%= display_meta_tags %>
Do I need both meta_tags
elements and is where they're located okay/best-practice?