blob: 724739b502e469124a60012f7be3e101935f53ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{# Taken from: https://github.com/plone/training/blob/master/_templates/page.html #}
{% extends "!page.html" %}
{% block footer %}
<script type="text/javascript">
$(document).ready(function() {
$(".toggle > *").hide();
$(".toggle .admonition-title").show();
$(".toggle .admonition-title").click(function() {
$(this).parent().children().not(".admonition-title").toggle(400);
$(this).parent().children(".admonition-title").toggleClass("open");
})
});
</script>
{% endblock %}
|