Files
phpredis/doctum-theme/layout/base.twig
T
2025-11-08 21:26:37 -08:00

23 lines
680 B
Twig

{% extends 'default/layout/base.twig' %}
{% block head %}
{{ parent() }}
<link rel="stylesheet" type="text/css" href="{{ path('css/highlight-github.min.css') }}">
<script defer src="{{ path('js/highlight.min.js') }}"></script>
<script>
window.addEventListener('load', function () {
if (!window.hljs) {
return;
}
document.querySelectorAll('pre.examples').forEach(function (block) {
if (!block.dataset.language) {
block.dataset.language = 'php';
}
hljs.highlightElement(block);
});
});
</script>
{% endblock %}