tocttou / hacker-blog

Hacker-Blog is a minimalistic, responsive jekyll theme built for hackers. https://ashishchaudhary.in/hacker-blog
Creative Commons Zero v1.0 Universal
319 stars 554 forks source link

Add support to define favicons from the config file #16

Open pandafy opened 3 years ago

phamthainb commented 3 years ago

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>
tocttou commented 3 years ago

Looks like a good addition. I'll take this up.