为sphinx_rtd_theme添加额外的页脚

时间:2018-04-28 04:17:18

标签: python-sphinx

我正在尝试向Sphinx中的sphinx_rtd_theme添加一个额外的页脚,在我的本地计算机上运行。我创建了一个文件footer.html并将其存储在source/_templates中。文件内容如下:

{% extends '!footer.html' %} {% block extrafooter %} {{super}} <!--
 <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
 --> {% endblock %}

我希望此标记显示在default sphinx_rtd_theme页脚之后,但只显示默认页脚。

我使用Fall Creators Update和Python 3.6.5运行Windows 10 - 64位。

谁能看到我做错了什么?

2 个答案:

答案 0 :(得分:1)

看起来你有一个拼写错误:<?php $arr = [ '#EXTM3U', '#EXTINF:177,Paul Dateh & Oren Yoel - Be More', 'Be More.mp3', '#EXTINF:291,Christopher Toy - Just Because', 'Just Because.mp3', '#EXTINF:238,Magnetic North - Drift Away', 'Drift Away.mp3' ]; $cleared_from_mess_array = array(); for ($i = 0; $i <= count($arr); $i++) { if ($arr[$i]{0} != '#') { array_push($cleared_from_mess_array,$arr[$i]); } } print_r($cleared_from_mess_array); exit; 。试试这个:

!

答案 1 :(得分:1)

问题在于Html嵌入在Html评论中。删除评论使它开始工作。评论就在那里,因为我从另一篇文章中逐字记录了片段。