Use double quotes in app/views/layouts

This commit is contained in:
Julian Herrero
2019-03-14 17:12:34 +01:00
parent b78ff808c1
commit 25ed245689
10 changed files with 38 additions and 38 deletions

View File

@@ -10,7 +10,7 @@
<div class="auth-image small-12 medium-3 column">
<h1 class="logo margin">
<%= link_to root_path do %>
<%= image_tag(image_path_for('logo_header.png'), class: 'float-left', alt: t("layouts.header.logo")) %>
<%= image_tag(image_path_for("logo_header.png"), class: "float-left", alt: t("layouts.header.logo")) %>
<% end %>
</h1>
</div>
@@ -19,7 +19,7 @@
<div class="row">
<div class="small-12 medium-9 large-7 small-centered column">
<div class="auth-form margin">
<%= render 'layouts/flash' %>
<%= render "layouts/flash" %>
<%= yield %>
</div>
@@ -31,7 +31,7 @@
</div>
<div class="footer">
<%= render 'layouts/footer' %>
<%= render "layouts/footer" %>
</div>
</body>
</html>