33 lines
703 B
HTML
33 lines
703 B
HTML
<head>
|
|
<title>kung-fu-quoting</title>
|
|
<link rel="icon" href="/favicon.ico">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{{> hello}}
|
|
</body>
|
|
|
|
<template name="hello">
|
|
<div id="main">
|
|
<h1> Kung Fu Quoting </h1>
|
|
{{> inputAutocomplete settings=settings id="legend" class="form-control" name="legend" placeholder="Quote" }}
|
|
<div id="spin">
|
|
<div id='before'>
|
|
<p>Padding Before</p>
|
|
{{> numberSpinner min=0 max=10 value=0 id="beforespin"}}
|
|
</div>
|
|
<div id='after'>
|
|
<p>Padding After</p>
|
|
{{> numberSpinner min=0 max=10 value=0 id="afterspin"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template name="kung">
|
|
<div class="options">
|
|
{{name}}
|
|
</div>
|
|
</template>
|