Skip to content

Commit 4254c3b

Browse files
committed
Merge pull request rsperberg#1 from hoichi/scaffold-and-json
Scaffold and json
2 parents d2cfa5a + 8a57245 commit 4254c3b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+7371
-1
lines changed

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Created by https://www.gitignore.io
2+
3+
### WebStorm ###
4+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
5+
6+
*.iml
7+
8+
## Directory-based project format:
9+
.idea/
10+
11+
## File-based project format:
12+
*.ipr
13+
*.iws
14+
15+
## Plugin-specific files:
16+
17+
# IntelliJ
18+
/out/
19+
20+
# mpeltonen/sbt-idea plugin
21+
.idea_modules/
22+
23+
# JIRA plugin
24+
atlassian-ide-plugin.xml
25+
26+
# Crashlytics plugin (for Android Studio and IntelliJ)
27+
com_crashlytics_export_strings.xml
28+
crashlytics.properties
29+
crashlytics-build.properties
30+
31+
32+
### Node ###
33+
# Logs
34+
logs
35+
*.log
36+
37+
# Runtime data
38+
pids
39+
*.pid
40+
*.seed
41+
42+
# Directory for instrumented libs generated by jscoverage/JSCover
43+
lib-cov
44+
45+
# Coverage directory used by tools like istanbul
46+
coverage
47+
48+
# node-waf configuration
49+
.lock-wscript
50+
51+
# Compiled binary addons (http://nodejs.org/api/addons.html)
52+
build/Release
53+
54+
# Dependency directory
55+
node_modules

dist/404.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<style>
8+
9+
* {
10+
line-height: 1.2;
11+
margin: 0;
12+
}
13+
14+
html {
15+
color: #888;
16+
display: table;
17+
font-family: sans-serif;
18+
height: 100%;
19+
text-align: center;
20+
width: 100%;
21+
}
22+
23+
body {
24+
display: table-cell;
25+
vertical-align: middle;
26+
margin: 2em auto;
27+
}
28+
29+
h1 {
30+
color: #555;
31+
font-size: 2em;
32+
font-weight: 400;
33+
}
34+
35+
p {
36+
margin: 0 auto;
37+
width: 280px;
38+
}
39+
40+
@media only screen and (max-width: 280px) {
41+
42+
body, p {
43+
width: 95%;
44+
}
45+
46+
h1 {
47+
font-size: 1.5em;
48+
margin: 0 0 0.3em;
49+
}
50+
51+
}
52+
53+
</style>
54+
</head>
55+
<body>
56+
<h1>Page Not Found</h1>
57+
<p>Sorry, but the page you were trying to view does not exist.</p>
58+
</body>
59+
</html>
60+
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->

dist/about.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en" class="no-js">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="x-ua-compatible" content="ie=edge">
6+
<title>Essential JavaScript Links</title>
7+
<meta name="description" content="">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="apple-touch-icon" href="apple-touch-icon.png">
10+
<!-- Place favicon.ico in the root directory-->
11+
<link rel="stylesheet" href="css/style.css">
12+
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
13+
</head>
14+
<body>
15+
<!--[if lt IE 8]>
16+
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
17+
<![endif]-->
18+
<!-- Add your site or application content here-->
19+
<header id="masthead" role="banner" class="Masthead">
20+
<hgroup class="Masthead-Logo">
21+
<h1 class="Masthead-Logo-Title">Essential JavaScript Links</h1><span class="Masthead-Logo-Subtitle">A curated list by Eric Elliott and friends.</span>
22+
</hgroup>
23+
<nav class="Masthead-Menu"><span class="Masthead-Menu-Item"><a href="index.html">The Links</a></span> <span class="Masthead-Menu-Item"><a href="about.html">About</a></span>
24+
</nav>
25+
</header>
26+
<main id="content" role="main" class="Content">
27+
<div>
28+
<p>This is a very exclusive collection of only must-have JavaScript links. I’m only listing my favorite links. Nothing else makes the cut. Feel free to suggest links if you think they’re good enough to make this list. The really curious should feel free to browse the comments to find other links. I can’t guarantee the quality of links in the comments.</p>
29+
</div>
30+
<aside class="InfoBox InfoBox--Warning">
31+
<h2 class="List-Header">Full Disclosure</h2>
32+
<p>Some of these links are affiliate links, meaning that if you make a purchase, I might earn a little money.<strong> This has absolutely no bearing on whether or not links make the list.</strong><em> None, whatsoever.</em> However, it does allow me more resources to <strong><a href="#">fight poverty with code</a></strong> <em>Every little bit counts.</em>
33+
</p>
34+
</aside>
35+
</main>
36+
<footer id="colophon" role="contentinfo" class="Colophon"><span>&copy; ’15 Eric Elliot &amp; friends</span></footer>
37+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
38+
<script>window.jQuery || document.write('<script src="../js/vendor/jquery-1.11.2.min.js"><\\/script>')</script>
39+
<script src="js/plugins.js"></script>
40+
<script src="js/main.js"></script>
41+
</body>
42+
</html>

dist/apple-touch-icon.png

3.87 KB
Loading

dist/browserconfig.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Please read: https://msdn.microsoft.com/en-us/library/ie/dn455106.aspx -->
3+
<browserconfig>
4+
<msapplication>
5+
<tile>
6+
<square70x70logo src="tile.png"/>
7+
<square150x150logo src="tile.png"/>
8+
<wide310x150logo src="tile-wide.png"/>
9+
<square310x310logo src="tile.png"/>
10+
</tile>
11+
</msapplication>
12+
</browserconfig>

dist/crossdomain.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
3+
<cross-domain-policy>
4+
<!-- Read this: https://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
5+
6+
<!-- Most restrictive policy: -->
7+
<site-control permitted-cross-domain-policies="none"/>
8+
9+
<!-- Least restrictive policy: -->
10+
<!--
11+
<site-control permitted-cross-domain-policies="all"/>
12+
<allow-access-from domain="*" to-ports="*" secure="false"/>
13+
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
14+
-->
15+
</cross-domain-policy>

dist/css/maps/style.css.map

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

0 commit comments

Comments
 (0)