diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-09-05 19:44:47 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-09-05 19:44:47 +0000 |
commit | aadf71570256992a7baf794964499a17b89e3997 (patch) | |
tree | 47d15be62f3e9b6bfc213b88f368f025c0266c3f /docs/_themes/llvm-theme/layout.html | |
parent | c10d5e9dae40801622c73237b484d51da73f77b9 (diff) | |
download | external_llvm-aadf71570256992a7baf794964499a17b89e3997.zip external_llvm-aadf71570256992a7baf794964499a17b89e3997.tar.gz external_llvm-aadf71570256992a7baf794964499a17b89e3997.tar.bz2 |
[Docs] Fix Sphinx incremental build. Patch by Sean Silva!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163235 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/_themes/llvm-theme/layout.html')
-rw-r--r-- | docs/_themes/llvm-theme/layout.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/_themes/llvm-theme/layout.html b/docs/_themes/llvm-theme/layout.html new file mode 100644 index 0000000..746c2f5 --- /dev/null +++ b/docs/_themes/llvm-theme/layout.html @@ -0,0 +1,23 @@ +{# + sphinxdoc/layout.html + ~~~~~~~~~~~~~~~~~~~~~ + + Sphinx layout template for the sphinxdoc theme. + + :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +#} +{% extends "basic/layout.html" %} + +{% block relbar1 %} +<div class="logo"> + <a href="{{ pathto('index') }}"> + <img src="{{pathto("_static/logo.png", 1) }}" + alt="LLVM Logo" width="250" height="88"/></a> +</div> +{{ super() }} +{% endblock %} + +{# put the sidebar before the body #} +{% block sidebar1 %}{{ sidebar() }}{% endblock %} +{% block sidebar2 %}{% endblock %} |