A semantic search engine for source code https://bitshift.benkurtovic.com/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

27 satır
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