error404.html.twig 810 B

1234567891011121314151617
  1. {% extends 'PackagistWebBundle::layout.html.twig' %}
  2. {% block content %}
  3. <div class="box">
  4. <form id="search-form" action="/search/" method="GET" autocomplete="off">
  5. <p class="submit-wrapper"><input class="submit" type="submit" value="Search" /></p>
  6. <p><input type="search" id="search_query_query" name="search_query[query]" required="required" autocomplete="off" placeholder="Search packages..." tabindex="1" /></p>
  7. </form>
  8. <div class="search-list hidden">
  9. </div>
  10. </div>
  11. <div class="box clearfix">
  12. <h1>Oh noes, 404!</h1>
  13. <p>It looks like you requested a page that was not found. Go back to the <a href="{{ path('home') }}">homepage</a> or use the search above to find the package you want.</p>
  14. </div>
  15. {% endblock %}