doc: tweak logo href to projectacrn.org

Have the logo link to the project site rather than the doc site

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2018-07-31 11:54:09 -07:00 committed by David Kinder
parent 6d2553532a
commit ce7257e12e
2 changed files with 6 additions and 0 deletions

View File

@ -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.

5
doc/static/acrn-custom.js vendored Normal file
View File

@ -0,0 +1,5 @@
/* tweak logo link */
$(document).ready(function(){
$( ".icon-home" ).attr("href", "https://projectacrn.org/");
});