Adds (ugly, ugly) favicon

Need a better favicon, but alas, no ideas. What could it conceivably
be?
This commit is contained in:
Samuel Ryan 2015-11-06 22:29:11 +00:00
parent 7e0983a69a
commit 92f1bdacbf
3 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,9 @@ var metalsmith = Metalsmith(__dirname);
.use(sass())
)
.use(fingerprint({pattern: ['style.css']}))
.use(fingerprint({
pattern: ['style.css', 'favicon.ico']
}))
.use(branch('**/*.md')
.use(markdown())

BIN
contents/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 B

View File

@ -5,6 +5,7 @@ doctype html
html(lang="en")
head
block title
link(rel='shortcut icon', href='/' + fingerprint['favicon.ico'], type='image/x-icon')
link(rel='stylesheet', href='/' + fingerprint['style.css'])
link(rel='stylesheet', href='https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Source+Code+Pro:700', type='text/css')
meta(name='viewport', content='width=device-width, initial-scale=1.0')