Sha256: 253919e4108c6bee071be7f01b6def2f9ccd475f60c90ae6b1755ce09360f2ad

Contents?: true

Size: 428 Bytes

Versions: 1

Compression:

Stored size: 428 Bytes

Contents

<%= erb :"_top_bar", :layout => false, :locals => locals %>

<h3>Shopify Sinatra App</h3>
<p>Welcome!</p>

<h3>Products</h3>
<table class="table table-striped table-hover">
  <tbody>
    <% @products.each do |product| %>
      <tr>
        <td>
          <a href=<%="https://#{current_shop_name}/admin/products/#{product.id}"%> target="_blank"> <%= product.id %> </a>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shopify-sinatra-app-0.0.7 lib/generator/views/home.erb