-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex.tmpl.html
48 lines (48 loc) · 1.86 KB
/
index.tmpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
{{template "header.tmpl.html"}}
<body>
<a href="https://github.com/bertoort/sugoku"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub"></a>
<main-title>
<h1>{{.title}}</h1>
<a href="https://golang.org/">
<img class="right-float" src="https://upload.wikimedia.org/wikipedia/commons/2/23/Golang.png" alt="go go go" />
</a>
</main-title>
<sudoku-board>
</sudoku-board>
<control-panel>
<section>
<h3> Generate: </h3>
<generate-buttons class="right-float">
<div class="ui buttons">
<button class="ui basic difficulty button">Easy</button>
<button class="ui basic difficulty button">Medium</button>
<button class="ui basic difficulty button">Hard</button>
<button class="ui basic difficulty button">Random</button>
</div>
<button class="ui basic button clear">
Clear
</button>
<generate-buttons>
</section>
<section>
<div class="ui left labeled button right-float" tabindex="0">
<a class="ui basic right label value-box diff"></a>
<div class="ui basic button button-label grade">
<i class="student icon"></i> Difficulty
</div>
</div>
<div class="ui labeled button" tabindex="0">
<div class="ui basic button button-label validate">
<i class="checkmark icon"></i> Validate
</div>
<a class="ui basic label value-box status"></a>
</div>
</section>
<section>
<button class="ui basic fluid large button solve">Solve</button>
</section>
</control-panel>
{{template "footer.tmpl.html"}}
</body>
</html>