3

我最近添加了 blowdrycss 的 sphinx 文档来阅读文档

我想覆盖readthedocs上的 layout.html 模板。我当前的模板覆盖在 上运行良好localhost,但在 readthedocs 上运行良好。该项目使用扩展了基本主题的雪花石膏主题。

项目目录结构可以看这里

相关部分是:

blowdrycss/
    docs/
        _templates/
            layout.html

        conf.py

模板设置conf.py

templates_path = ['_templates']

layout.html 的内容:

{% extends '!layout.html' %}


{% block sidebarsearch %}
    {{ super() }}
    <a href="https://flattr.com/submit/auto?user_id=nueverest&url=https%3A%2F%2Fgithub.com%2Fnueverest%2Fblowdrycss" target="_blank"><img src="http://button.flattr.com/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
{% endblock %}


{% block footer %}
    <div class="footer" style="text-align: center;">
        <a href="https://flattr.com/submit/auto?user_id=nueverest&url=https%3A%2F%2Fgithub.com%2Fnueverest%2Fblowdrycss" target="_blank"><img src="http://button.flattr.com/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
    </div>
    {{ super() }}
{% endblock %}

如何覆盖layout.htmlreadthedocs 上的模板?

更新 我也试过:

相关部分是:

blowdrycss/
    docs/
        custom_templates/
            layout.html

        conf.py

模板设置conf.py

templates_path = ['custom_templates']
4

2 回答 2

3

虽然 readthedocs 不templates_path立即支持,但您可以使用带有模板的自定义主题。http://sphinx-doc.org/theming.html

只需创建一个新的主题目录并将其添加到您的conf.py

html_theme = 'your_theme'
html_theme_path = ['.']

您可以在我的一个项目中看到一个示例:

于 2015-12-11T13:35:20.343 回答
1

看起来现在 ReadTheDocs应该支持templates_pathhttps ://docs.readthedocs.io/en/stable/guides/remove-edit-buttons.html?highlight=templates_path#remove-links-from-top-right-corner

于 2019-03-29T23:00:09.190 回答