error_404.html.erb 829 B

12345678910111213141516171819202122232425262728293031
  1. <% content_for :head do %>
  2. <%= stylesheet_link_tag "error", media: "all", "data-turbolinks-track": "reload" %>
  3. <% end %>
  4. <section>
  5. <h3>
  6. <%= t("error.error_404_title" ) %>
  7. </h3>
  8. <div id='left'>
  9. <p id='code'>
  10. 404
  11. </p>
  12. <p>
  13. <span><%= t("error.error" ) %></span>
  14. <span><%= t("error.code" ) %></span>
  15. </p>
  16. </div>
  17. <div id='right'>
  18. <h4>
  19. <%= t("error.error_404_description" ) %>
  20. </h4>
  21. <%= t("error.try_solution" ) %>
  22. <ul>
  23. <li>
  24. <a href='javascript: history.go(-1);'><%= t("error.error_400_solution_0") %></a>
  25. </li>
  26. <li>
  27. <a href='/'><%= t("error.error_400_solution_1") %></a>
  28. </li>
  29. </ul>
  30. </div>
  31. </section>