index.rhtml.orig

来自「ruby on rails web敏捷开发之路第二版 源代码」· ORIG 代码 · 共 18 行

ORIG
18
字号
<h1>Your Pragmatic Catalog</h1><% for product in @products -%>  <div class="entry">    <img src="<%= product.image_url %>"/>    <h3><%= h(product.title) %></h3>    <%= product.description %>    <div class="price-line">      <span class="price"><%= number_to_currency(product.price) %></span>      <!-- START:form_remote_tag -->      <%= form_remote_tag :url => { :action => :add_to_cart, :id => product } %>        <%= submit_tag "Add to Cart" %>        <%= end_form_tag %>        <!-- END:form_remote_tag -->      </div>  </div><% end %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?