reorganization

This commit is contained in:
Edin Dazdarevic
2015-05-27 19:35:59 +02:00
parent 65c2902dcd
commit 02a556408c
12 changed files with 1 additions and 1 deletions

30
web/confighub.html Normal file
View File

@@ -0,0 +1,30 @@
<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>
<div class="row">
{{#each machines}}
{{> machineDetails}}
{{/each}}
</div>
</div>
<!-- {{> hello}} -->
</body>
<template name="machineDetails">
<div class="col-lg-4">{{hostname}}</div>
</template>
<template name="hello">
<button>Click Me</button>
<p>You've pressed the button {{counter}} times.</p>
</template>