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.
 
 
 
 
 
 

27 lines
432 B

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