diff --git a/doc/conf.py b/doc/conf.py index 049869a38..3b5188005 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -208,6 +208,7 @@ html_static_path = ['static'] def setup(app): app.add_stylesheet("acrn-custom.css") + app.add_javascript("acrn-custom.js") # Custom sidebar templates, must be a dictionary that maps document names # to template names. diff --git a/doc/static/acrn-custom.js b/doc/static/acrn-custom.js new file mode 100644 index 000000000..6b90fe56c --- /dev/null +++ b/doc/static/acrn-custom.js @@ -0,0 +1,5 @@ +/* tweak logo link */ + +$(document).ready(function(){ + $( ".icon-home" ).attr("href", "https://projectacrn.org/"); +});