1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Add PWA manifest to website (#1585)

This commit is contained in:
Dmitry Sharshakov 2019-01-26 20:19:47 +03:00 committed by Ryan Dahl
parent c03ff8556b
commit 2f000303f2
2 changed files with 14 additions and 0 deletions

View file

@ -3,6 +3,7 @@
<html>
<head>
<title>Deno</title>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="https://unpkg.com/c3@0.6.7/c3.min.css">
<link rel="stylesheet" href="style.css">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />

13
website/manifest.json Normal file
View file

@ -0,0 +1,13 @@
{
"dir": "ltr",
"lang": "en",
"name": "Deno",
"scope": "/",
"display": "browser",
"start_url": "/",
"short_name": "Deno",
"theme_color": "#F0F0F0",
"description": "A new way to JavaScript",
"orientation": "any",
"background_color": "#F0F0F0"
}