layout.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {# Base template for a topic page #}
  2. {% extends 'base.html' %}
  3. {% block body %}
  4. <div class="layout">
  5. <header class="flexbox flexbox-justify-end flexbox-valign-baseline margin-top margin-bottom">
  6. {#
  7. {% if user %}
  8. <a href="{{ url('user', username=user['username']) }}" class="redlink nodecoration">{{ user['username'] }}</a>
  9. {% else %}
  10. <a href="{{ url('signin') }}" class="redlink small-font nodecoration">Sign in</a>
  11. {% endif %}
  12. #}
  13. <a href="/" class="dokk-logo">DOKK</a>
  14. <form action="{{ url('search') }}" id="search" class="search margin-left">
  15. <input
  16. autocomplete= "off"
  17. maxlength = "2048"
  18. name = "q"
  19. placeholder = "Search topics"
  20. required = "true"
  21. spellcheck = "false"
  22. type = "text" />
  23. <ul class="suggestions"></ul>
  24. </form>
  25. </header>
  26. <section class="page">
  27. {% block page %}{% endblock %}
  28. </section>
  29. <footer>
  30. </footer>
  31. </div>
  32. {% endblock %}