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
480 B

  1. = extends "layout.html"
  2. = block title
  3. Home
  4. = endblock
  5. = block head
  6. {{ assets.tag("index.css") }}
  7. {{ assets.tag("jquery.min.js") }}
  8. = endblock
  9. = block body
  10. <div id="search-field">
  11. <div id="title">
  12. <span id="title-bit">bit</span><span id="title-angle">&laquo;</span><span id="title-shift">shift</span>
  13. </div>
  14. <form id="search-bar">
  15. <input type="text">
  16. </form>
  17. </div>
  18. <div id="results">
  19. </div>
  20. {{ assets.tag("index.js") }}
  21. = endblock