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:
parent
c03ff8556b
commit
2f000303f2
2 changed files with 14 additions and 0 deletions
|
@ -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
13
website/manifest.json
Normal 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"
|
||||
}
|
Loading…
Reference in a new issue