homepage.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends 'layout.html' %}
  2. {% block meta %}
  3. <meta name="author" content="Peers Community">
  4. <meta name="description" content="A community-curated knowledge graph about any topic.">
  5. <meta name="keywords" content="free,knowledge,graph">
  6. {% endblock %}
  7. {% block body %}
  8. <div class="homepage">
  9. <form action = "{{ url('search') }}"
  10. class = "search"
  11. id = "search">
  12. <input autocomplete = "off"
  13. autofocus = "true"
  14. maxlength = "2048"
  15. name = "q"
  16. placeholder = "Search topics"
  17. spellcheck = "false"
  18. type = "text" />
  19. <ul class="suggestions"></ul>
  20. </form>
  21. <div class="links right">
  22. <a href="/dokk/about" class="small-font nodecoration" title="About the project">About</a>
  23. <a href="{{ url('explore') }}" class="small-font nodecoration" title="Explore graph">Explore</a>
  24. <a href="/dokk" class="small-font nodecoration" title="Community pages">Community</a>
  25. <a href="{{ url('editor') }}" class="small-font nodecoration" title="Edit the graph">Editor</a>
  26. <a href="{{ url('index') }}" class="dokk-logo nodecoration">DOKK</a>
  27. </div>
  28. </div>
  29. {% endblock %}