Add favicon.png

This commit is contained in:
Hajime Hoshi 2014-12-28 16:54:13 +09:00
parent 7ab96a28cb
commit fff7d9f21c
4 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,11 @@
<!DOCTYPE html> <!DOCTYPE html>
{{comment .License}} {{comment .License}}
<link rel="shortcut icon" href="/favicon.png" type="image/png" >
<link rel="icon" href="/favicon.png" type="image/png" >
<style> <style>
body {
font-family: sans-serif;
}
table.examples td { table.examples td {
vertical-align: top; vertical-align: top;
} }

BIN
_docs/public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

View File

@ -12,7 +12,12 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License.--> limitations under the License.-->
<link rel="shortcut icon" href="/favicon.png" type="image/png" >
<link rel="icon" href="/favicon.png" type="image/png" >
<style> <style>
body {
font-family: sans-serif;
}
table.examples td { table.examples td {
vertical-align: top; vertical-align: top;
} }

4
doc.go
View File

@ -20,5 +20,7 @@
// // Define your game. // // Define your game.
// } // }
// //
// ebiten.Run(update, 320, 240, 2, "Your game's title") // func main() {
// ebiten.Run(update, 320, 240, 2, "Your game's title")
// }
package ebiten package ebiten