Files
componentowl-rails-archive/app/views/error/_not_found.html.erb

15 lines
411 B
Plaintext
Raw Normal View History

<div class="subpage not_found-content">
<div class="section-heading"><%= image_tag("heading-404.gif", :alt => t("txt.alt.not_found")) %></div>
<p><%= t('txt.not_found.not_found') %></p>
<p><%= t('txt.not_found.visit_instead', :url => root_url) %></p>
<ul class="common">
<% for product in all_products %>
<li><%= link_to(product.name, product) %></li>
<% end %>
</ul>
</div>