A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
422 B

  1. = extends "layout.html"
  2. = block head
  3. {{ assets.tag("error404.css") }}
  4. = endblock
  5. = block body
  6. <div id="message">
  7. {{ assets.syntax_highlight([
  8. 'puts("404");',
  9. 'printf("%d\n", 404);',
  10. 'puts 404',
  11. 'System.out.println("404")',
  12. 'print 404',
  13. 'console.log("404")',
  14. 'echo 404',
  15. 'std::cout << "404\\n"',
  16. '(println "404")',
  17. 'say "404!";'
  18. ] | random) | safe }}
  19. </div>
  20. = endblock