diff --git a/docs/source/_static/style.css b/docs/source/_static/style.css index 6f7474995..11b862e09 100644 --- a/docs/source/_static/style.css +++ b/docs/source/_static/style.css @@ -1,3 +1,7 @@ +h1 { + font-size: 50px; +} + .navbar-brand { padding-top: 7px; } diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html index efce3f8d0..6a3b3c971 100644 --- a/docs/source/_templates/layout.html +++ b/docs/source/_templates/layout.html @@ -2,4 +2,30 @@ {% extends "!layout.html" %} {# Custom CSS overrides #} -{% set bootswatch_css_custom = ['_static/style.css'] %} +{% set bootswatch_css_custom = ['_static/style.css', "../../css/converse.min.css"] %} +{% set script_files = script_files + ["../../builds/converse.min.js"] %} + +{# Add some extra stuff before and use existing with 'super()' call. #} +{% block footer %} + {{ super() }} + + + +{% endblock %} + +