8

我有以下index.rst文件。

Know the cell population of your data
=====================================
Some content

.. toctree::
   :maxdepth: 2

Installation
~~~~~~~~~~~~
.. toctree::
   :maxdepth: 2

   installation

Scripts
~~~~~~~
.. toctree::
   :maxdepth: 2

   scripts

API documentation
~~~~~~~~~~~~~~~~~
.. toctree::
   :maxdepth: 2

   apidoc

Roadmap
~~~~~~~
.. toctree::
   :maxdepth: 2

   roadmap

Indices and Tables
==================
* :ref: `genindex`

现在侧边栏看起来像这样:

在此处输入图像描述

如该图像中所述。我想做几件事。

  1. 在侧边栏中删除标题,但在主页中保留它。
  2. 添加新的 URL 链接,但未在“索引和表格”之类的主页中显示它

我怎样才能做到这一点?

4

2 回答 2

10

我终于通过以下方式修复了它

在 Sphinx 的_template目录中创建一个名为foo.html.

内容可能如下所示:

<hr />
<p>
<h2 class='logo'>
<a href="https://foo.bar.com/">Web Version</a>
</h2>
</p>

最后在conf.py中添加:

html_sidebars = {
        '**': [
                 'localtoc.html',
                 'relations.html',
                 'searchbox.html',
                 # located at _templates/
                 'foo.html',
            ]

        }

最后它看起来像这样:

在此处输入图像描述

于 2015-10-26T07:08:11.837 回答
3

对于第一个问题,我可以提出一些建议。我绝不是 CSS 方面的专家,所以我的解决方案可能不是更优雅的解决方案,但它确实有效!放入你的'source/_static/custom.css'文件:

.sphinxsidebar a.reference.internal[href='#'] {
  display: none;
}

也许 CSS 专家应该提供更好的选择器……</p>

于 2015-10-10T18:24:42.800 回答