mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Thanks to tk0miya's comment, I learnt one can add stuff to template blocks, that allows a much simpler stylesheet configuration, considering that changes at the template level will be more... well, low-level. Hopefully this is now acceptable.
9 lines
454 B
HTML
9 lines
454 B
HTML
{% extends "!layout.html" %}
|
|
{%- block csss %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="_static/more_persistent.css" type="text/css" />
|
|
<link rel="stylesheet" href="_static/more_default.css" type="text/css" title="Default" />
|
|
<link rel="alternate stylesheet" href="_static/more_alternate1.css" type="text/css" title="Alternate" />
|
|
<link rel="alternate stylesheet" href="_static/more_alternate2.css" type="text/css" />
|
|
{%- endblock %}
|