diff options
author | George Stagas <gstagas@gmail.com> | 2011-03-16 09:44:05 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-04-02 02:35:23 -0700 |
commit | 21e3b668cb4be40465e060c9248bee1b7d4635d9 (patch) | |
tree | a0365f590afcd0feec08256daa550c5d05bfc77c | |
parent | ffb3ee6084f1596399cc70e7e5bf27ce9d7485d4 (diff) | |
download | nodejs-21e3b668cb4be40465e060c9248bee1b7d4635d9.tar.gz nodejs-21e3b668cb4be40465e060c9248bee1b7d4635d9.tar.bz2 nodejs-21e3b668cb4be40465e060c9248bee1b7d4635d9.zip |
Added favicon.ico
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | doc/favicon.ico | bin | 0 -> 1406 bytes | |||
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/template.html | 2 | ||||
-rw-r--r-- | doc/v0.4_announcement.html | 2 |
5 files changed, 7 insertions, 0 deletions
@@ -70,6 +70,7 @@ website_files = \ build/doc/sh_vim-dark.css \ build/doc/logo.png \ build/doc/sponsored.png \ + build/doc/favicon.ico \ build/doc/pipe.css doc: build/default/node $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) diff --git a/doc/favicon.ico b/doc/favicon.ico Binary files differnew file mode 100644 index 000000000..6916dbc03 --- /dev/null +++ b/doc/favicon.ico diff --git a/doc/index.html b/doc/index.html index 37b4275c1..7f4db3f96 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9,6 +9,8 @@ </style> <script type="text/javascript" src="sh_main.js"></script> <script type="text/javascript" src="sh_javascript.min.js"></script> + <link type="image/x-icon" rel="icon" href="favicon.ico" /> + <link type="image/x-icon" rel="shortcut icon" href="favicon.ico" /> <link type="text/css" rel="stylesheet" href="pipe.css" /> <link type="text/css" rel="stylesheet" href="sh_vim-dark.css" /> <link rel="alternate" diff --git a/doc/template.html b/doc/template.html index 404244ed7..19bca35f3 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,6 +2,8 @@ <html> <head> <title>{{section}}Node.js Manual & Documentation</title> + <link type="image/x-icon" rel="icon" href="/favicon.ico" /> + <link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" /> <link rel="stylesheet" href="assets/style.css" type="text/css" media="all" /> <link rel="stylesheet" href="assets/sh.css" type="text/css" media="all"/> </head> diff --git a/doc/v0.4_announcement.html b/doc/v0.4_announcement.html index 2aa2259bf..8ecda802c 100644 --- a/doc/v0.4_announcement.html +++ b/doc/v0.4_announcement.html @@ -7,6 +7,8 @@ margin: 0; } </style> + <link type="image/x-icon" rel="icon" href="favicon.ico" /> + <link type="image/x-icon" rel="shortcut icon" href="favicon.ico" /> <link type="text/css" rel="stylesheet" href="pipe.css" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>node v0.4 announcement</title> |