デバイス ビューを生成したところ、生成されたerb.html
:
<%- if controller_name != 'sessions' %>
<%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>
とは<%- %> .. <% -%>
、サルの質問だとわかっていますが、どのキーワードを検索すればよいかわかりません..そこで、無敵の Stackoverflow に助けられました..
デバイス ビューを生成したところ、生成されたerb.html
:
<%- if controller_name != 'sessions' %>
<%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>
とは<%- %> .. <% -%>
、サルの質問だとわかっていますが、どのキーワードを検索すればよいかわかりません..そこで、無敵の Stackoverflow に助けられました..
レンダリングされた HTML の見栄えが良くなるように、空白を消費します。
<% %> 内に Ruby コードを配置できます
<% Ruby code -- inline with output %>
<%= Ruby expression -- replace with result %>
<%# comment -- ignored -- useful in testing %>
% a line of Ruby code -- treated as <% line %> (optional -- see ERB.new)
%% replaced with % if first thing on a line and % processing is used
<%% or %%> -- replace with <% or %> respectively
参考: http: //ruby-doc.org/stdlib-1.9.3/libdoc/erb/rdoc/ERB.html