layout.html 880 B

123456789101112131415161718192021222324252627282930
  1. {#
  2. default/layout.html
  3. ~~~~~~~~~~~~~~~~~~~
  4. Sphinx layout template for the default theme.
  5. :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. #}
  8. {% extends "basic/layout.html" %}
  9. {% if theme_collapsiblesidebar|tobool %}
  10. {% set script_files = script_files + ['_static/sidebar.js'] %}
  11. {% endif %}
  12. {%- block footer %}
  13. <div class="footer">
  14. <div>
  15. MediaGoblin documentation released into the public domain via <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC0</a>.
  16. {%- if last_updated %}
  17. {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
  18. {%- endif %}
  19. {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
  20. </div>
  21. </div>
  22. {%- endblock %}