Вам не нужна пользовательская тема. Используйте встроенную директиву container
, которая позволяет вам добавлять пользовательские css-классы в блоки и переопределять существующую тему, чтобы добавить некоторый JavaScript для добавления функции show / hide.
Это _templates/page.html
:
{% extends "!page.html" %}
{% block footer %}
<script type="text/javascript">
$(document).ready(function() {
$(".toggle > *").hide();
$(".toggle .header").show();
$(".toggle .header").click(function() {
$(this).parent().children().not(".header").toggle(400);
$(this).parent().children(".header").toggleClass("open");
})
});
</script>
{% endblock %}
Это _static/custom.css
:
.toggle .header {
display: block;
clear: both;
}
.toggle .header:after {
content: " ▶";
}
.toggle .header.open:after {
content: " ▼";
}
Это добавлено к conf.py
:
def setup(app):
app.add_stylesheet('custom.css')
Теперь вы можете показать / скрыть блок кода.
.. container:: toggle
.. container:: header
**Show/Hide Code**
.. code-block:: xml
:linenos:
from plone import api
...
Я использую что-то очень похожее для упражнений здесь: https://training.plone.org/5/mastering_plone/about_mastering.html#exercises