layout.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {%- extends "basic/layout.html" %}
  2. {%- macro custom_relbar() %}
  3. <div class="related" role="navigation" aria-label="related navigation">
  4. <h3>{{ _('Navigation') }}</h3>
  5. <ul>
  6. {%- block rootrellink %}
  7. <li class="nav-item nav-item-0"><a href="{{ pathto(master_doc) }}">Docs</a>{{ reldelim1 }}</li>
  8. {%- endblock %}
  9. {%- for parent in parents %}
  10. <li class="nav-item nav-item-{{ loop.index }}"><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
  11. {%- endfor %}
  12. <li class="nav-item">{{ title|striptags|e }}</li>
  13. {%- block relbaritems %} {% endblock %}
  14. </ul>
  15. </div>
  16. {%- endmacro %}
  17. {%- macro custom_prevnext() %}
  18. <div class="prevnext">
  19. {%- if prev %}
  20. <div class="item left">
  21. <a href="{{ prev.link|e }}">← {{ prev.title }}</a>
  22. </div>
  23. {%- endif %}
  24. {%- if next %}
  25. <div class="item right">
  26. <a href="{{ next.link|e }}">{{ next.title }} →</a>
  27. </div>
  28. {%- endif %}
  29. <div class="clearfix"></div>
  30. </div>
  31. {%- endmacro %}
  32. {%- block sidebarlogo %}
  33. <div class="logowrapper">
  34. <p class="logo"><a href="{{ pathto(master_doc) }}" title="{{ project }}">
  35. {%- if logo %}
  36. <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="{{ project }}"/>
  37. {%- else %}
  38. <span>{{ project }}</span>
  39. {%- endif %}
  40. </a></p>
  41. <p class="version">v {{release}}</p>
  42. </div>
  43. {%- endblock %}
  44. {%- block relbar1 %}{% endblock %}
  45. {%- block relbar2 %}{% endblock %}
  46. {%- block document %}
  47. <div class="documentwrapper">
  48. {%- if render_sidebar %}
  49. <div class="bodywrapper">
  50. {%- endif %}
  51. <div class="body" role="main">
  52. {{ custom_relbar() }}
  53. {% block body %} {% endblock %}
  54. {{ custom_prevnext() }}
  55. <div class="footer" role="contentinfo">
  56. {%- if show_copyright %}
  57. {%- if hasdoc('copyright') %}
  58. {% trans path=pathto('copyright'), copyright=copyright|e %}&#169; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
  59. {%- else %}
  60. {% trans copyright=copyright|e %}&#169; Copyright {{ copyright }}.{% endtrans %}
  61. {%- endif %}
  62. {%- endif %}
  63. {%- if last_updated %}
  64. {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
  65. {%- endif %}
  66. {%- if show_sphinx %}
  67. {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a>.{% endtrans %}
  68. {%- endif %}
  69. </div>
  70. </div>
  71. {%- if render_sidebar %}
  72. </div>
  73. {%- endif %}
  74. </div>
  75. {%- endblock %}
  76. {%- block footer %}{%- endblock %}