Files
sphinx/doc/_templates/layout.html
Roland Meister 6ced1ce311 Disable embedded css for embedded builders.
Note: this change also affects all other embedded builders (but only for the Shinx doc itself).
2009-12-28 17:16:19 +01:00

22 lines
624 B
HTML

{% extends "!layout.html" %}
{% block extrahead %}
{%- if not embedded %}
<style type="text/css">
table.right { float: right; margin-left: 20px; }
table.right td { border: 1px solid #ccc; }
</style>
{% endif %}
{% endblock %}
{% block rootrellink %}
<li><a href="{{ pathto('index') }}">Sphinx home</a>&nbsp;|&nbsp;</li>
<li><a href="{{ pathto('contents') }}">Documentation</a>&raquo;</li>
{% endblock %}
{% block header %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<img src="{{ pathto("_static/sphinx.png", 1) }}" alt="Sphinx logo" />
</div>
{% endblock %}