hacker-blog
hacker-blog copied to clipboard
Add support to define favicons from the config file
You can define favicons in head tag like that:
<head>
....
<link
rel="alternate icon"
class="js-site-favicon"
type="image/png"
href="../assets/favicons.jpg"
/>
<link
rel="icon"
class="js-site-favicon"
type="image/svg+xml"
href="../assets/favicons.jpg"
/>
...
</head>
Looks like a good addition. I'll take this up.