diff --git a/Documentation/tutorial/docfx.exe_user_manual.md b/Documentation/tutorial/docfx.exe_user_manual.md index a413759bf25..4f2f2f5a970 100644 --- a/Documentation/tutorial/docfx.exe_user_manual.md +++ b/Documentation/tutorial/docfx.exe_user_manual.md @@ -304,6 +304,8 @@ Metadata Name | Type | Description ----------------------|---------|--------------------------- _appTitle | string | Will be appended to each output page's head title. _appFooter | string | The footer text. Will show DocFX's Copyright text if not specified. +_appLogoPath | string | Logo file's path from output root. Will show DocFX's logo if not specified. Remember to add file to resource. +_appFaviconPath | string | Favicon file's path from output root. Will show DocFX's favicon if not specified. Remember to add file to resource. _enableSearch | bool | Indicate whether to show the search box on the top of page. _disableNavbar | bool | Indicate whether to show the navigation bar on the top of page. _disableBreadcrumb | bool | Indicate whether to show breadcrumb on the top of page. diff --git a/src/docfx.website.themes/default/partials/head.tmpl.partial b/src/docfx.website.themes/default/partials/head.tmpl.partial index b2f1163f8b1..39794e34de9 100644 --- a/src/docfx.website.themes/default/partials/head.tmpl.partial +++ b/src/docfx.website.themes/default/partials/head.tmpl.partial @@ -8,7 +8,7 @@ {{#_description}}{{/_description}} - + diff --git a/src/docfx.website.themes/default/partials/logo.tmpl.partial b/src/docfx.website.themes/default/partials/logo.tmpl.partial new file mode 100644 index 00000000000..8209615a35b --- /dev/null +++ b/src/docfx.website.themes/default/partials/logo.tmpl.partial @@ -0,0 +1,5 @@ +{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} + + + + diff --git a/src/docfx.website.themes/default/partials/navbar.tmpl.partial b/src/docfx.website.themes/default/partials/navbar.tmpl.partial index 9f9939e387d..fb22e78befc 100644 --- a/src/docfx.website.themes/default/partials/navbar.tmpl.partial +++ b/src/docfx.website.themes/default/partials/navbar.tmpl.partial @@ -9,9 +9,7 @@ - - - + {{>partials/logo}}