Move build/watch to git style sub-commands
This commit is contained in:
parent
5046292d69
commit
2cf7d346cb
6 changed files with 652 additions and 0 deletions
158
public/hello-world/index.html
Normal file
158
public/hello-world/index.html
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
<html lang="en" data-reactid=".27jsx0hilts" data-react-checksum="-1923782900"><head data-reactid=".27jsx0hilts.0"><meta charset="utf-8" data-reactid=".27jsx0hilts.0.0"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-reactid=".27jsx0hilts.0.1"><meta name="viewport" content="user-scalable=no width=device-width, initial-scale=1.0 maximum-scale=1.0" data-reactid=".27jsx0hilts.0.2"><title data-reactid=".27jsx0hilts.0.3">Default title</title><link rel="shortcut icon" data-reactid=".27jsx0hilts.0.4"><style id="react-typography" data-reactid=".27jsx0hilts.0.5">/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-size: 112.5%;
|
||||
line-height: 1.58333em;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
color: hsl(0,0%,20%);
|
||||
font-family: georgia, serif;
|
||||
font-weight: 400;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/* Make image responsive by default */
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* All block elements get one rhythm of bottom margin. */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
hgroup,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
dd,
|
||||
p,
|
||||
figure,
|
||||
pre,
|
||||
table,
|
||||
fieldset,
|
||||
blockquote,
|
||||
form,
|
||||
noscript,
|
||||
iframe,
|
||||
img,
|
||||
hr {
|
||||
margin: 0;
|
||||
margin-bottom: 1.58333rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1.58333rem 3.95833rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
hr {
|
||||
background: hsl(0,0%,80%);
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin-bottom: calc(1.58333rem - 1px);
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style-position: outside;
|
||||
margin-left: 1.58333rem;
|
||||
}
|
||||
|
||||
ul li,
|
||||
ol li {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 1rem;
|
||||
line-height: 2.375rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
thead {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: hsl(0,0%,20%);
|
||||
font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.82843rem;
|
||||
line-height: 3.16667rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
line-height: 2.375rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.41421rem;
|
||||
line-height: 2.375rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.25992rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.12246rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
</style><style data-reactid=".27jsx0hilts.0.6">body {
|
||||
color: rgb(66,66,66);
|
||||
}
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: rgb(44,44,44);
|
||||
}
|
||||
a {
|
||||
color: rgb(42,93,173);
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}</style></head><body class="landing-page" data-reactid=".27jsx0hilts.1"><div id="react-mount" data-reactid=".27jsx0hilts.1.0"><div style="max-width:38rem;margin-left:auto;margin-right:auto;padding:3.16667rem 1.58333rem;" data-reactid=".1oxpz4n4yrk" data-react-checksum="-553365081"><h3 data-reactid=".1oxpz4n4yrk.0:0"><a style="text-decoration:none;color:inherit;" class="" href="/" data-reactid=".1oxpz4n4yrk.0:0.0">My Awesome Blog</a></h3><div class="markdown" data-reactid=".1oxpz4n4yrk.0:1"><h1 data-reactid=".1oxpz4n4yrk.0:1.0">Hello World</h1><div data-reactid=".1oxpz4n4yrk.0:1.1"><p>This is my first post on my new fake blog! How exciting!</p>
|
||||
<p>I’m sure I’ll write a lot more interesting things in the future.</p>
|
||||
<p>Oh, and here’s a great quote from this Wikipedia on <a href="http://en.wikipedia.org/wiki/Salted_duck_egg">duck eggs</a>.</p>
|
||||
<blockquote>
|
||||
<p>A salted duck egg is a Chinese preserved food product made by soaking duck eggs in brine, or packing each egg in damp, salted charcoal. In Asian supermarkets, these eggs are sometimes sold covered in a thick layer of salted charcoal paste. The eggs may also be sold with the salted paste removed, wrapped in plastic, and vacuum packed. From the salt curing process, the salted duck eggs have a briny aroma, a gelatin-like egg white and a firm-textured, round yolk that is bright orange-red in color.</p>
|
||||
</blockquote>
|
||||
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Salty_egg.JPG/270px-Salty_egg.JPG" alt="Chinese Salty Egg"></p>
|
||||
</div><em style="display:block;margin-bottom:3.16667rem;" data-reactid=".1oxpz4n4yrk.0:1.2"><span data-reactid=".1oxpz4n4yrk.0:1.2.0">Posted </span><span data-reactid=".1oxpz4n4yrk.0:1.2.1">May 1, 2015</span></em><hr style="margin-bottom:3.16667rem;" data-reactid=".1oxpz4n4yrk.0:1.3"><div data-reactid=".1oxpz4n4yrk.0:1.4"><h6 style="margin:0;font-size:0.70711rem;line-height:1.58333rem;letter-spacing:-0.5px;" data-reactid=".1oxpz4n4yrk.0:1.4.0">READ THIS NEXT:</h6><h3 style="margin-bottom:0.39583rem;" data-reactid=".1oxpz4n4yrk.0:1.4.1"><a class="" href="/my-second-post/?readNext=true" data-reactid=".1oxpz4n4yrk.0:1.4.1.0">My Second Post!</a></h3><p data-reactid=".1oxpz4n4yrk.0:1.4.2">Wow! I love blogging so much already. Did you know that “despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg...</p><hr data-reactid=".1oxpz4n4yrk.0:1.4.3"></div><p data-reactid=".1oxpz4n4yrk.0:1.5"><img src="/kyle-round-small-pantheon.jpg" style="float:left;margin-right:0.39583rem;margin-bottom:0;width:3.16667rem;height:3.16667rem;" data-reactid=".1oxpz4n4yrk.0:1.5.0"><strong data-reactid=".1oxpz4n4yrk.0:1.5.1">Kyle Mathews</strong><span data-reactid=".1oxpz4n4yrk.0:1.5.2"> lives and works in San Francisco building useful things. </span><a href="https://twitter.com/kylemathews" data-reactid=".1oxpz4n4yrk.0:1.5.3">You should follow him on Twitter</a></p></div><span style="display:block;clear:both;" data-reactid=".1oxpz4n4yrk.1"> </span></div></div><script src="/bundle.js" data-reactid=".27jsx0hilts.1.1"></script></body></html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue