docs: add favicon to the website
authorEric Engestrom <eric.engestrom@intel.com>
Fri, 4 May 2018 11:46:17 +0000 (12:46 +0100)
committerEric Engestrom <eric.engestrom@intel.com>
Tue, 29 May 2018 13:48:21 +0000 (14:48 +0100)
favicon.png is just gears.png resized to 64x64, and favicon.ico is
generated using this command, adapted from the ImageMagick example [1]:

  $ convert favicon.png -background black \
      \( -clone 0 -resize 16x16 \) \
      \( -clone 0 -resize 32x32 \) \
      \( -clone 0 -resize 48x48 \) \
      \( -clone 0 -resize 64x64 \) \
      -delete 0 -alpha off -colors 256 favicon.ico

We could edit every html page to add `<link rel="icon" href="favicon.ico" />`,
but there's not much point as pretty much every browser will pick it up
automatically if the file is named `favicon.ico` and is in the root folder.

[1] http://www.imagemagick.org/Usage/thumbnails/#favicon

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
docs/favicon.ico [new file with mode: 0644]
docs/favicon.png [new file with mode: 0644]

diff --git a/docs/favicon.ico b/docs/favicon.ico
new file mode 100644 (file)
index 0000000..e7e244a
Binary files /dev/null and b/docs/favicon.ico differ
diff --git a/docs/favicon.png b/docs/favicon.png
new file mode 100644 (file)
index 0000000..19898ef
Binary files /dev/null and b/docs/favicon.png differ