Skip to content

Commit bea76e7

Browse files
committed
update Google Web Starter kit to 0.6.1 version
1 parent 6b025fc commit bea76e7

38 files changed

+807
-667
lines changed

.babelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"presets": ["es2015"],
3+
// Remove the line below to enable ES2015 support.
4+
"only": "gulpfile.babel.js",
5+
"retainLines": true
6+
}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules
2-
.sass-cache
3-
dist
2+
dist/
43
.tmp
4+
app.yaml

.jscsrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.jshintrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
sudo: false
12
language: node_js
23
node_js:
3-
- '0.10'
4-
before_install:
5-
- gem install sass
4+
- '5'
5+
- '4'
6+
- '0.12'

CONTRIBUTING.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2014 Google Inc
190+
Copyright 2015 Google Inc
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.
@@ -205,8 +205,8 @@
205205
*.css is licensed under the Creative Commons Attribution International
206206
4.0 License, which full text can be found here:
207207
https://creativecommons.org/licenses/by/4.0/legalcode.
208-
208+
209209
As an exception to this license, all html or css that is generated by
210210
the software at the direction of the user is copyright the user. The
211211
user has full ownership and control over such content, including
212-
whether and how they wish to license it.
212+
whether and how they wish to license it.

README Web Starter Kit.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

app/basic.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!doctype html>
2+
<html lang="">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="description" content="">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<title></title>
9+
10+
<!-- Disable tap highlight on IE -->
11+
<meta name="msapplication-tap-highlight" content="no">
12+
13+
<!-- Web Application Manifest -->
14+
<link rel="manifest" href="manifest.json">
15+
16+
<!-- Add to homescreen for Chrome on Android -->
17+
<meta name="mobile-web-app-capable" content="yes">
18+
<meta name="application-name" content="Web Starter Kit">
19+
<link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
20+
21+
<!-- Add to homescreen for Safari on iOS -->
22+
<meta name="apple-mobile-web-app-capable" content="yes">
23+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
24+
<meta name="apple-mobile-web-app-title" content="Web Starter Kit">
25+
<link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png">
26+
27+
<!-- Tile icon for Win8 (144x144 + tile color) -->
28+
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
29+
<meta name="msapplication-TileColor" content="#2F3BA2">
30+
31+
<!-- Color the status bar on mobile devices -->
32+
<meta name="theme-color" content="#2F3BA2">
33+
34+
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
35+
<!--
36+
<link rel="canonical" href="http://www.example.com/">
37+
-->
38+
</head>
39+
<body>
40+
<!-- Add your site or app content here -->
41+
42+
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
43+
<script>
44+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
45+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
46+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
47+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
48+
ga('create', 'UA-XXXXX-X', 'auto');
49+
ga('send', 'pageview');
50+
</script>
51+
<!-- Built with love using Web Starter Kit -->
52+
</body>
53+
</html>
Binary file not shown.

0 commit comments

Comments
 (0)