Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 535 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 535 Bytes

How-to

# create a new post
hugo new articles/$(date '+%Y-%m-%d')-post-title-here.md

# start a local web server
hugo serve

Other

Generating favicons from SVG

npm install icon-gen -g
npm install svgexport -g

icon-gen -i static/favicon.svg -o static/ --ico name=favicon sizes=16,24,32,48,64

svgexport static/apple-touch-icon.svg static/apple-touch-icon.png 1024:1024
for size in 120 152 167 180; do
	svgexport static/apple-touch-icon.svg static/apple-touch-icon-${size}x${size}.png $size:$size
done