Files
old-confighub/web/confighub.html

31 lines
582 B
HTML
Raw Normal View History

2015-05-27 18:51:07 +02:00
<head>
<title>confighub</title>
</head>
<body>
<div class="container">
<div class="row">
<h1>Welcome to confighub.io</h1>
<div class="col-lg-12">
Here goes list of machines
</div>
</div>
2015-05-27 19:34:44 +02:00
<div class="row">
{{#each machines}}
{{> machineDetails}}
{{/each}}
</div>
2015-05-27 18:51:07 +02:00
</div>
<!-- {{> hello}} -->
</body>
2015-05-27 19:34:44 +02:00
<template name="machineDetails">
<div class="col-lg-4">{{hostname}}</div>
</template>
2015-05-27 18:51:07 +02:00
<template name="hello">
<button>Click Me</button>
<p>You've pressed the button {{counter}} times.</p>
</template>