I want to use the custom Favicon and use the logo configured in the LocalSettings.php file. I found the following code in the Skin:Example, but unfortunately it does not show the logo.
Please help me to solve the issue and you may refer a doc where I can find the solution.
```
<div id="p-logo" class="mw-portlet" role="banner">
<a href="{{link-mainpage}}">
{{#data-logos}}
{{#icon}}<img src="{{.}}" width="40" height="40">{{/icon}}
{{#wordmark}}<img src="{{src}}" width="{{width}}" height="{{height}}">{{/wordmark}}
{{^wordmark}}<h1>{{msg-sitetitle}}</h1>{{/wordmark}}
{{/data-logos}}
</a>
</div>
```