breadcrumbs.html 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {%- extends "sphinx_rtd_theme/breadcrumbs.html" %}
  2. {% block breadcrumbs %}
  3. <li>
  4. <div style="font-size: 105%;font-weight: 600;">
  5. {{ godot_docs_title | replace("%s", godot_version) }}
  6. </div>
  7. <ul class="wy-breadcrumbs">
  8. {{ super() }}
  9. </ul>
  10. </li>
  11. {% endblock %}
  12. {% block breadcrumbs_aside %}
  13. {% if not meta or meta.get('github_url') != 'hide' %}
  14. <li style="float: right; text-align: right;">
  15. <ul>
  16. {{ super() }}
  17. </ul>
  18. <style>
  19. .godot-edit-guidelines {
  20. font-size: 14px;
  21. float: right;
  22. clear: both;
  23. padding-top: 4px;
  24. }
  25. @media screen and (max-width: 480px) {
  26. .godot-edit-guidelines {
  27. display: none;
  28. }
  29. }
  30. </style>
  31. <a class="godot-edit-guidelines" href="https://docs.godotengine.org/en/latest/contributing/documentation/index.html#writing-documentation">
  32. Learn how to contribute!
  33. </a>
  34. </li>
  35. {% endif %}
  36. {% endblock %}