diff options
author | EuAndreh <eu@euandre.org> | 2020-12-28 18:25:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-28 18:26:14 -0300 |
commit | 484779fc5e4f3c455696216ad690c4f678814b03 (patch) | |
tree | 96c11cbdf6199f84845cf0de5b780213a5621159 /_plugins/generate-favicon.rb | |
parent | Use PNG favicon on Atom feed and audio file metadata (diff) | |
download | euandre.org-484779fc5e4f3c455696216ad690c4f678814b03.tar.gz euandre.org-484779fc5e4f3c455696216ad690c4f678814b03.tar.xz |
generate-favicon.rb: Generate PNG favicon from SVG
Diffstat (limited to '')
-rw-r--r-- | _plugins/generate-favicon.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_plugins/generate-favicon.rb b/_plugins/generate-favicon.rb new file mode 100644 index 0000000..11c038a --- /dev/null +++ b/_plugins/generate-favicon.rb @@ -0,0 +1,16 @@ +module Jekyll + class FaviconGenerator < Generator + safe true + priority :high + + SIZE = 420 + + def generate(site) + svg = 'static/favicon.svg' + png = 'static/favicon.png' + unless File.exist? png then + puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} #{svg}` + end + end + end +end |