archive/kung-fu-quoting/client/kung-fu-quoting.html

33 lines
703 B
HTML
Raw Normal View History

2016-02-20 11:55:05 -05:00
<head>
<title>Kung Fu Quoting</title>
2016-02-21 15:54:15 -05:00
<link rel="icon" href="/favicon.ico">
2016-02-20 11:55:05 -05:00
</head>
<body>
{{> hello}}
</body>
<template name="hello">
<div id="main">
2016-02-21 15:37:20 -05:00
<h1> Kung Fu Quoting </h1>
{{> inputAutocomplete settings=settings id="legend" class="form-control" name="legend" placeholder="Quote" }}
2016-02-20 11:55:05 -05:00
<div id="spin">
2016-02-21 15:37:20 -05:00
<div id='before'>
2016-02-20 11:55:05 -05:00
<p>Padding Before</p>
2016-02-21 15:37:20 -05:00
{{> numberSpinner min=0 max=10 value=0 id="beforespin"}}
2016-02-20 11:55:05 -05:00
</div>
2016-02-21 15:37:20 -05:00
<div id='after'>
2016-02-20 11:55:05 -05:00
<p>Padding After</p>
2016-02-21 15:37:20 -05:00
{{> numberSpinner min=0 max=10 value=0 id="afterspin"}}
2016-02-20 11:55:05 -05:00
</div>
</div>
</div>
</template>
<template name="kung">
2016-02-21 15:37:20 -05:00
<div class="options">
{{name}}
</div>
2016-02-20 11:55:05 -05:00
</template>