Skip to content

Commit 27e87a5

Browse files
committed
初始化项目
1 parent 4830a6f commit 27e87a5

16 files changed

+905
-0
lines changed

app/humans.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# humanstxt.org/
2+
# The humans responsible & technology colophon
3+
4+
# TEAM
5+
6+
<name> -- <role> -- <twitter>
7+
8+
# THANKS
9+
10+
<name>
11+
12+
# TECHNOLOGY COLOPHON
13+
14+
HTML5, CSS3

app/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
6+
<meta name="description" content="DevDocs is a fast, offline API documentation browser with 60+ docs including HTML, CSS, JavaScript, PHP, Ruby, Python, Go, C, C++, jQuery, and more.">
7+
<meta name="apple-mobile-web-app-capable" content="yes">
8+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
9+
<meta name="format-detection" content="telephone=no">
10+
<meta name="robots" content="noodp">
11+
<title>ReactUI DevDocs API Documentation</title>
12+
<link rel="canonical" href="http://devdocs.io">
13+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="DevDocs Search">
14+
<link rel="alternate" href="http://devdocs.io/feed" title="DevDocs" type="application/atom+xml">
15+
<link rel="icon" type="image/x-icon" href="//cdn.devdocs.io/favicon.ico">
16+
17+
<link rel="stylesheet" href="css/app.css" data-alt="css/app-dark.css">
18+
<!-- <%= javascript_tag 'application', asset_host: false %>
19+
<%= javascript_tag 'docs' %><% unless App.production? %>
20+
<%= javascript_tag 'debug' %><% end %> -->
21+
</head>
22+
<!-- <body class="_booting _noscript"> -->
23+
<body class="_booting _loading">
24+
<noscript class="_fail">DevDocs requires JavaScript to run.</noscript>
25+
</body>
26+
<!-- <script src="http://cdn.bootcss.com/es5-shim/4.1.12/es5-shim.min.js"></script>
27+
<script src="https://fb.me/react-0.14.0.js"></script>
28+
<script src="https://fb.me/react-dom-0.14.0.js"></script>
29+
<script src="http://cdn.bootcss.com/prettify/r298/prettify.min.js"></script> -->
30+
<script src="venders/es5-shim.min.js"></script>
31+
<script src="venders/react-0.14.0.js"></script>
32+
<script src="venders/react-dom-0.14.0.js"></script>
33+
<script src="venders/prettify.min.js"></script>
34+
<script src="js/app.js"></script>
35+
</html>

app/js/app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('helloooo')

app/manifest.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "Amaze UI Starter Kit",
3+
"short_name": "AMUISK",
4+
"icons": [
5+
{
6+
"src": "i/touch/icon-128x128.png",
7+
"sizes": "128x128"
8+
},
9+
{
10+
"src": "i/touch/apple-touch-icon.png",
11+
"sizes": "152x152"
12+
},
13+
{
14+
"src": "i/touch/ms-touch-icon-144x144-precomposed.png",
15+
"sizes": "144x144"
16+
},
17+
{
18+
"src": "i/touch/chrome-touch-icon-192x192.png",
19+
"sizes": "192x192"
20+
}
21+
],
22+
"start_url": "/index.html?homescreen=1",
23+
"display": "standalone"
24+
}

app/manifest.webapp

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "1.0.0",
3+
"name": "Amaze UI React Starter Kit",
4+
"launch_path": "/index.html",
5+
"description": "An Amaze UI template that helps you build fast, modern mobile web apps.",
6+
"icons": {
7+
"128": "/i/touch/icon-128x128.png"
8+
},
9+
"developer": {
10+
"name": "",
11+
"url": ""
12+
},
13+
"installs_allowed_from": [
14+
"*"
15+
],
16+
"default_locale": "zh_CN",
17+
"permissions": {
18+
},
19+
"locales": {
20+
"en": {
21+
"name": "Amaze UI React Starter Kit",
22+
"description": "An Amaze UI React template that helps you build fast, modern mobile web apps.",
23+
},
24+
"zh_CN": {
25+
"name": "Amaze UI React 启动工具包",
26+
"description": "Amaze UI React 新手入门快速上手工具包"
27+
}
28+
}
29+
}

app/robots.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# www.robotstxt.org/
2+
3+
# Allow crawling of all content
4+
User-agent: *
5+
Disallow:

app/venders/es5-shim.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/venders/prettify.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/venders/react-0.14.0.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/venders/react-dom-0.14.0.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* ReactDOM v0.14.0
3+
*
4+
* Copyright 2013-2015, Facebook, Inc.
5+
* All rights reserved.
6+
*
7+
* This source code is licensed under the BSD-style license found in the
8+
* LICENSE file in the root directory of this source tree. An additional grant
9+
* of patent rights can be found in the PATENTS file in the same directory.
10+
*
11+
*/
12+
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOM=e(f.React)}}(function(e){return e.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy