Re: Favicons
Posted by
Pedro on
May 31, 2012; 12:38am
URL: https://support.nabble.com/Favicons-tp7579941p7580140.html
This is your default html macro code:
<macro name="html" parameters="head,body">
<n.html_impl>
<head>
<n.head/>
</head>
<body>
<n.top_bar/>
<n.body/>
<n.nabble_footer/>
</body>
</n.html_impl>
</macro>
So, you have to edit this macro adding that line. The final code will be like this:
<override_macro name="html" parameters="head,body">
<n.html_impl>
<head>
<link rel="shortcut icon" href="http://yourIcon.jpg" type="image/x-icon" />
<n.head/>
</head>
<body>
<n.top_bar/>
<n.body/>
<n.nabble_footer/>
</body>
</n.html_impl>
</override_macro>